Home > Software engineering >  How to list in a file filenames in ADLS storage folder via LogicApps
How to list in a file filenames in ADLS storage folder via LogicApps

Time:09-27

my question is how can I list the filesnames in storage's folder and save them in a file via LogicApps?

enter image description here

CodePudding user response:

You can initialize an array and use Append to array variable to store the name of the blob inside the array and then use create Blob to save the list of files from the required container. Below is the flow of my Logic App.

enter image description here

RESULTS:

RESULT IN LOGIC APPS

enter image description here

RESULT IN STORAGE ACCOUNT

enter image description here

  • Related