Skip to main content

Posts

Showing posts with the label Azure Blob Storage

Check Container Exists In Azure Blob Storage in C#.Net

In this article i am going to explain about How to Check Container Exists In Azure Blob Storage in C#.Net .There is no predefined method exists in the .Net Library to check whether the specific container exists or not in the blob storage. But we can check the container existence using Get Blob Properties, which does a HEAD request against the blob and returns 404 error if the container doesn't exists.

Azure Blob Storage Create Container - C#.Net,VB.Net

In this article i am going to explain about How to Create Container in Azure Blob Storage Using C#.Net & VB.Net . This is achieved by using the Create method of the CloudBlobContainer class.