in one of my requirement i have to read the files from one container and move them another folder in a blob using logic app.
steps:
>> step1:
i have container name as "testcon" in which i have some files and every time new files will be added in this container.
step2:when ever the "testcon" is added or modified with file then list blobs will retrieve the all the files containers in the "testcon".
step3:
applying for-each loop to retrieve the files to move them to testcon2
get blob content using path is to get the current blob content coming though the each iteration so we can get the file content and move that to another container.
create blob step is to move the files to "testcon2" by getting the current file content through the each iteration.