Hello @Kola, Sarath Babu !
Welcome to Microsoft QnA!
Unfortunately ther is not a trigger for File Storage in Logic Apps
But if you look this thread :
There are ways to accomplish that :
- You can use the recurrence trigger in logic app to poll and check for new files/folders https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-examples-and-scenarios#common-starting-points-for-logic-app-workflows and based on the conditional requirement you can then design your workflow.
- You can consider a continuous webjob to poll the required REST API endpoint and check for new items. Based on the result you can proceed to the next step.
- You may also consider the Durable function Monitor to poll until a particular condition is met.
Also there is a Trigger though for Blob Storage
With a small function you can create a program to copy something to a Blob Storage and then fire the Logic App
The link of Logic Apps Connectors
https://learn.microsoft.com/en-us/azure/connectors/built-in
In your place i would created an Azure Function that executes each time a File is created , and then write some metadata in the Blob. The Logic App will fire when a Blob is modified or added !
I hope this helps!
Kindly mark the answer as Accepted and Upvote in case it helped!
Regards