i have store file in Blob container as below code i.e:
CloudBlob blob = container.GetBlobReference("Images/page11/Orange box.png");
blob.UploadFromStream(mnm);
blob.Metadata["FileName"] = "Orange box.png";
blob.SetMetadata();
i have successfully store in the container like as "Images/page11/Orange box.png" but when i fetch attribute i got error BlobType of the blob reference doesn't match BlobType of the blob using this code.
blob.FetchAttributes();
return true;
Is this right way to get Blob from container?