Hello, I would like to know how I can download files to a folder without compressing them into a zip file. Not to an existing folder on my computer, but rather to download a regular folder without it being compressed in a zip file. I wouldn't mind downloading a zip file and having the regular folder inside it. Thanks !
Create a temp folder on your server, and add files to it with this:
https://www.outsystems.com/forge/component-overview/68/filesystem
Zip the folder with this:
https://www.outsystems.com/forge/component-overview/356/bigzip
Then you can use FileSystem extension again to get your .zip, and the standard OutSystems download action.
In the end, what I did was inside the zip, in the AddFile function, add + "/FolderName" + to the fileName. This way, inside the zip, a loop was created and for each list, the files were added in a folder.
Thank you anyway !