Clear Filters
Clear Filters

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

10 views (last 30 days)
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

Accepted Answer

Mamta Kamath
Mamta Kamath on 4 Dec 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 Comment
oran
oran on 24 Oct 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

Sign in to comment.

More Answers (0)

Categories

Find more on Downloads in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!