My application requires to unzip a zip file located in Azure's blob storage. Is unzipping supported in Azure blob storage?
+3
A:
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.
knightpfhor
2010-09-28 23:07:10