microsoft / AzureTipsAndTricks

Learn some of our favorite Azure tips and tricks—some long-standing, and new ones that have recently been added to become more productive with Azure. Star the repo now to shave hours off your coding tasks tomorrow.
http://azuredev.tips
Creative Commons Attribution 4.0 International
1.49k stars 488 forks source link

Azure function #17

Closed gvulcano closed 5 years ago

gvulcano commented 5 years ago

Hello,

I have a request to zip all files in a specific folder in OneDrive using Logic App/Azure Function. What steps should I do, to get all files in OneDrive in a specific folder and zip in one single file?

Thank you much for your attention.

mbcrump commented 5 years ago

So there isn't a Logic App connector for this. You can extract just not compress. If you want to use Logic apps then I'd suggest submitting your idea here.

An approach that I'd take is to compress the files first then send to OneDrive as a zip. If you have the files on a VM you could even using PowerShell in Azure Functions. Check out this sample. I'll leave this open for a couple more days.

gvulcano commented 5 years ago

Hello Michael, thank you for your answer. I'll check your sample :)