แชร์ผ่าน


[Sample Of Mar. 04] How to unzip files to Azure blob storage in Azure

image

Mar.

04

image

image

Sample : https://code.msdn.microsoft.com//How-to-unzip-files-to-53234a56

For users with large amounts of unstructured data to store in the cloud, Blob storage offers a cost-effective and scalable solution. Users can store documents, social data, images and text in Blob storage.

This sample demonstrates how to unzip files to Azure blob storage in Azure. Uploading thousands of small files one by one is very slow. It would be great if we could upload a zip file to Azure and unzip it directly into blob storage in Azure.

This sample demonstrates how to unzip files to Azure blob storage in Azure. Uploading thousands of small files one by one is very slow. It would be great if we could upload a zip file to Azure and unzip it directly into blob storage in Azure.

image

 

You can find more code samples that demonstrate the most typical programming scenarios by using Microsoft All-In-One Code Framework Sample Browser or Sample Browser Visual Studio extension. They give you the flexibility to search samples, download samples on demand, manage the downloaded samples in a centralized place, and automatically be notified about sample updates. If it is the first time that you hear about Microsoft All-In-One Code Framework, please watch the introduction video on Microsoft Showcase, or read the introduction on our homepage https://1code.codeplex.com/.

Comments

  • Anonymous
    September 18, 2015
    Hi, I am working on Azure Asp.net MVC web app. I have bolb directory of 755MB and i want to make it zip and want to upload zip file as blob. Kindly please suggest, how i can do this? i have tried to use DOTNETZIP and downloading all the blobs under than blob directory and adding those one by one in to zip.then i save zipfile to zipstream and use parallel upload by dividing into chunks to upload complete file as zip blob. it is working fine. but when it comes to run under azure environment, process stops and session timeout occurs. it does not throw any exception and in local code works perfectly fine. please help me.