Exporting (i.e., downloading) Multiple Files from a MATLAB Web App
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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
0 Commenti
Risposta accettata
Mamta Kamath
il 4 Dic 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.
Furthermore, I've shared your request with the development team for consideration.
Thanks,
Mamta
1 Commento
oran
il 24 Ott 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
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Downloads in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!