Reputation: 11
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
Reputation: 14334
Azure function did support OneDrive file Input/Output bindings, but it doesn't support the trigger.
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