DOWNLOAD MULTIPLE FILES

Brass Contributor

Hello  Community,

 

Does anyone have a solution to download multiple files from a gallery?

 

Thanks,

V/R

chudson002

 

3 Replies

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?

Hello,
Yes, the links are stored in a column within the document library.

V/R
chudson002

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).