2
votes

The requirement is to move the files from azure file share to azure blob when user is uploading a file to azure file share. I have gone through the link below:- https://feedback.azure.com/forums/287593-logic-apps/suggestions/20324680-add-trigger-for-azure-file-storage

What I found out till now is trigger mechanism is not supported on azure file share like we can do on azure blob.So How I can achieve the same functionality on azure file share. Basically i want a trigger on azure file share so that when file is uploaded i should able to execute my custom logic written in c# to process the file and upload to blob.

1

1 Answers

1
votes

As you mentioned the functionality is not yet offered as a connector, however, since you have written your custom logic in C#, you can use Azure Functions, which allows you to run custom code and will be used as if it was a logic app instance. you can get the idea from:

https://docs.microsoft.com/en-us/azure/logic-apps/logic-apps-azure-functions

I will also Upvote your feedback and will discuss the status with the internal teams as well.