Stoyan Atanasov
Stoyan Atanasov

Reputation: 11

How to create a function that triggers on OneDrive file like I can do on BlobStorage?

I need to trigger an azure function on a file created in a specific folder in OneDrive for Business. The function should output another file in another folder of the OneDrive. I am asking here because the Azure Docs are admittedly in need of update and improvement for Beginners.

Upvotes: 1

Views: 2947

Answers (1)

George Chen
George Chen

Reputation: 14334

Azure function did support OneDrive file Input/Output bindings, but it doesn't support the trigger.

enter image description here

you could use Logic App to implement it, and there is When a file is created trigger connector just like KetanChawda mentioned with OneDrive for Business connector.

And it also support Azure Function connector, means you could add the function into the workflow if you have to use Function to finish some works.

Upvotes: 4

Related Questions