Related questions
Uploading blockblob and setting contenttype
I'm using Microsoft.WindowsAzure.Storage.* library from C#.
This is how I'm uploading things to storage:
// Store in storage
CloudStorageAccount storageAccount = CloudStorageAccount.Parse("...connection string...");
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
CloudBlobContainer container = blobClient.GetContainerReference("pictures");
// Create container if it doesnt exist
…
Read file from Azure blob storage
I want to read a PDF file bytes from azure storage, for that I have a file path.
https://hostedPath/pdf/1001_12_Jun_2012_18_39_05_594.pdf
So it possible to read content from blob storage by directly passing its Path name? Also I …