I have stored my zip file in blob storage . I already read archive from blob to stream
.Code is as follows
string blobUrl = http://127.0.0.1:10000/devstoreaccount1/usercontrols/ucProfileViewSMSIS.zip";
string containerName = "usercontrols";
Storage.Blob blobHandler = new Storage.Blob();
Stream blobstream = blobHandler.GetBlob(blobUrl, containerName);
I have three files in my archive . I want to write write those 3 files to my local folder .
How do I do this ?
You will need an unzip library like DotNetZip to unzip the files. Under the examples section, there is a method to unzip directly from a stream: