1
votes

How to move the data from one container to another container in the same Azure storage account using Logic App?

In Azure, I have a storage account with two containers (test-1, and test-2). I want to move the files from one container to another container periodically.

Is there a way to achieve this process with a Logic App?

Any comments or suggestions would be greatly appreciated

1

1 Answers

1
votes

Please refer to my logic app:

You ca use List blobs first:

enter image description here

Then use For each, within for each, you need to use Get blob content using path and Create blob.

enter image description here

=====================update=====================

Add a Delete blob action

enter image description here