7

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

4

1 回答 1

11

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.

于 2010-09-28T23:07:10.607 回答