Azure Logic App to dynamically get Blob contents from Azure blob container without having to save the name of the file in path

I provide entire logic app for your reference, most of actions are same as yours:

1. The overview of the logic app enter image description here

2. The first three actions enter image description here

3. Fourth and fifth action enter image description here

4. Details of “For each” loop enter image description here

The expression in “Set variable” is int(substring(items('For_each')?['Name'], 0, 8)) and the expression in “Set variable 3” is replace(items('For_each')?['Name'], '/', '')

5. The last two actions enter image description here

The last expression in “Get blob content” action is body('List_blobs_2')?['value'][0]?['Name']

====================================Update=================================

1. Delete the last action “Get blob content” of your logic app.

2. Then we start after the action “List blobs 2“. Add two “Initialize variable“. enter image description here

3. Add another “For each” loop. Please note: choose value from “List blobs 2” into “For each 2” but not choose value from “List blobs” into “For each 2“. enter image description here

4. The details in the “For each 2” loop. enter image description here

The expressions of both fx ticks(...) are ticks(items('For_each_2')?['LastModified'])

And in “Set variable 5“, also choose the Name from “List blobs 2” but not from “List blobs“.

5. Then add “Get blob content” action like below screenshot. enter image description here

6. By the way: Please do this setting for all of the “For each” loop action in your logic app before you run the logic app. Otherwise, the result may be incorrect.

Click ... button of the “For each” action and click “Settings”, enable Concurrency Control and set Degree of Parallelism as 1. enter image description here

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top