SVI
SVI

Reputation: 1651

Can I Unzip a file in Azure Blob storage?

My application requires to unzip a zip file located in Azure's blob storage. Is unzipping supported in Azure blob storage?

Upvotes: 7

Views: 7947

Answers (2)

Palash Roy
Palash Roy

Reputation: 1755

One way is to create an Azure Function with blob trigger, and the function would need to handle the logic to unzip the zip file. This solution is dependent on your code.

Second way is to create an Azure Logic App, with Blob trigger, then use connectors to unzip the zipped files. Please refer video: https://www.youtube.com/channel/UCAr20GBQayL-nFPWFnUHNAA

Upvotes: 0

knightpfhor
knightpfhor

Reputation: 9399

Out of the box no, but you can keep any binary data you want in blob storage and use myBlob.DownloadToStream(myStream) and then use your choice of zip/unzip libraries to unzip the stream.

Upvotes: 11

Related Questions