My application needs to unzip the zip file located in the Azure storage. Is support unlocked in Azure blob storage?
Out of the box, but you can store any binary data you want in the blob repository and use myBlob.DownloadToStream(myStream)it and then use your choice of zip / unzip libraries to unpack the stream.
myBlob.DownloadToStream(myStream)