In this post I will show you to download a file from Azure BLOB. Set the Connection String as below, Function to download and save file is as below, you need to pass Connection string to BLOB storage Public Container name BLOB name or file name Thanks for reading. I hope this post was useful
Tag Archives: Azure Storage
Creating and updating EXCEL file in Windows Azure Web Role using Open XML SDK
Problem Statement You need to create and upload EXCEL file in Windows Azure Web Role. Since there is no MS Office present on AZURE VM so you cannot use Office InterOP Dll. So you are left with option of Open XML SDK to create and update Excel file. Solution Approach Create and update Excel fileContinueContinue reading “Creating and updating EXCEL file in Windows Azure Web Role using Open XML SDK”
Downloading file as byte array from AZURE BLOB storage in WCF Service
In this post I will show you how you can download a file from AZURE BLOB storage as byte array. Contract To download file client will have to provide ContainerName and filename to be downloaded. Service Implementation Very first you need to add reference of, Microsoft.WindowsAzure Microsoft.WindowsAzure.StorageClient Second you need to create connection string toContinueContinue reading “Downloading file as byte array from AZURE BLOB storage in WCF Service”