Filter löschen
Filter löschen

Exporting (i.e., downloading) Multiple Files from a MATLAB Web App

10 Ansichten (letzte 30 Tage)
Is it possible to have a single download (file export) from a MATLAB Web App that contains multiple items/files in the download?
For example, consider a push button on the GUI that allows the user to export a data table from the GUI into an Excel file. This could be completed using:
[FileName,PathName,FilterIndex] = uiputfile('*.xlsx','Specify the save location and file name','Saved_ExcelFile');
resultFilePath = fullfile(PathName,FileName);
writecell([app.Table.ColumnName']; [app.Table.Data]], resultFilePath);
When run in the Web App, the above code would create a "download" in the user's browser, and the download would contain one file. However, say there were 50 different files that needed to be extracted from the GUI, and assume the names of the indivudal files can be generated programmatically - does the Web App functionality allow for a set of files to be "bundled/zipped/packaged" together and exported as a single download?
Thanks for any insight you can provide!
Cory

Akzeptierte Antwort

Mamta Kamath
Mamta Kamath am 4 Dez. 2020
Hello Cory,
I understand your request about downloading multiple files from MATLAB web app. However, that action is not supported yet.
Possible workaround is to zip all the files for download and call uiputfile to trigger the download of zip file.
Please refer to the Example Script for much better understanding of how you can do this.
Furthermore, I've shared your request with the development team for consideration.
Thanks,
Mamta
  1 Kommentar
oran
oran am 24 Okt. 2021
Mamta: I'm researching this functionality for an upcoming project. However, the example script seems to be blocked behind mathwork's sharepoint. Is there anyway I can see the script?
Thank you

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Downloads finden Sie in Help Center und File Exchange

Produkte


Version

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by