May 02 2022 10:24 AM
Hello Community,
Does anyone have a solution to download multiple files from a gallery?
Thanks,
V/R
chudson002
May 03 2022 01:17 AM - edited May 03 2022 01:18 AM
Hi @chudson002 , you can trigger a HTTP GET action in Power Automate, looping through the target files. Presumably you have the links in a list of some kind?
May 03 2022 09:29 AM
May 03 2022 11:47 PM
Hi @chudson002 , so with the document links stored in a list (I'm assuming you mean a list when you say document library) you can use a gallery to list them all, then select the ones you want to process. When you select an item (OnSelect) it would be added to a collection (e.g.
Collect(col_SelectedItems,ThisItem)
You would then loop through the collection and process each document (downloading it using a HTTP GET action in Power Automate).