Search code examples
listazure-blob-storagefilenamesazure-logic-apps

How to list in a file filenames in ADLS storage folder via LogicApps


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


Solution

  • 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