How to setup an Azure Function to zip files
Ever needed to bundle multiple files into a single zip from Power Automate or Logic Apps? Creating zip files programmatically in the cloud can be tricky — there’s no built-in action for it. In this post, I’ll show you how to set up an Azure Function that accepts base64 file content for an array of files and returns a compressed zip file. You can then store it in Blob Storage, send it to SFTP, attach it to an email — wherever you need it. ...