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

10 次查看(过去 30 天)
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

采纳的回答

Mamta Kamath
Mamta Kamath 2020-12-4
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 个评论
oran
oran 2021-10-24
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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Downloads 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by