Hello everyone,
I have the following use case:
The user has a low-code app that triggers an IAS, where he has a list of files that he can download. Something like this:
The download button would be a DownloadButton component.
After the user selects the files that he wants to download, he clicks on the button. From what I read on the docs, the download button has a RemoteFilePath that will be the path to the file. In this case, I will have several paths.
I thought I could iterate and change the remote file path for each file and trigger the download for each one, but the download will only be triggered when the user clicks on the button.
That will obligate me to create a button for each file, which in my opinion looks bad.
Are this assumptions correct?
Thank you,
Ana
Hi Ana,
Maybe an alternative could be to create a ZIP file with the selected files and download that instead?
Hi Ana,
Is it not an option to create a zip file that includes the files selected?
What I noticed on other platforms (e.g. OneDrive, Google Drive) is that when you select multiple files to be downloaded, these platforms will create a zip file including all selected files. In the end what you download is a zip file.