azure-blob-storage
Azure Shared Access Signature – Signature did not match
Short Answer: Add comp=list&restype=container to your SAS URL and you should not get this error. Long Answer: Essentially from your SAS URL, Azure Storage Service is not able to identify if the resource you’re trying to access is a blob or a container and assumes it’s a blob. Since it assumes the resource type is … Read more
How to download a file to browser from Azure Blob Storage
While blob content may be streamed through a web server, and along to the end user via browser, this solution puts load on the web server, both cpu and NIC. An alternative approach is to provide the end user with a uri to the desired blob to be downloaded, which they may click in the … Read more
Microsoft Azure: How to create sub directory in a blob container
To add on to what Egon said, simply create your blob called “folder/1.txt”, and it will work. No need to create a directory.
How can I delete a leased blob in Microsoft Azure storage
You need to delete the disk objects that are associated with the abandoned vhd’s. You can do this easily in either the classic or new portal. Once you dispose of these (along with associated leases), you should be able to get rid of your storage account In the Classic portal (manage.windowsazure.com), you just visit Virtual … Read more