Setting Up Blob Hierarchies - Understanding Blob Storage - Part Four

So far, we have seen creating containers and uploading blobs directly to the containers. You can read previous parts of this "Understanding Blob Storage" here:

 
Containers are basically like root folders on file systems and all the blobs that go into the container go to that root folder. To enable hierarchy for the subfolder you should use a prefix on the blob that you upload into the container.

Step 1

First, we will see how to do the same via the portal. While uploading a blob, in the advanced option you can see a provision to specify a specific folder to upload and it will create a new one if one we specified doesn’t exist.

Azure 

Step 2

Browse for a file and click on upload and you can see a new folder has been created in our container and the new file added inside the container.

Azure 

Azure
Step 3

Now we can create another subfolder in the container using our application. For that copy the following code to your Main method. In this code, we are going to copy a blob in the container to a subfolder. In the reference code to which the file has to be copied, we are prefixing the name of the subfolder to the filename.
  1. CloudStorageAccount storageAccount = CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting("StorageConnection"));  
  2. CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();  
  3. CloudBlobContainer container = blobClient.GetContainerReference("images");  
  4. container.CreateIfNotExists(BlobContainerPublicAccessType.Blob);  
  5. CloudBlockBlob blockBlob = container.GetBlockBlobReference("img5.jpeg");  
  6. CloudBlockBlob blockBlobCopy = container.GetBlockBlobReference("Sub Folder 2/img5.jpeg");  
  7. var cb = new AsyncCallback(x => Console.WriteLine("blob copy completed"));  
  8. blockBlobCopy.BeginStartCopy(blockBlob.Uri, cb, null);  
  9. Console.ReadKey();  
Azure

Step 4

Run the application and we can see the new folder has been created with the file copied inside

Azure 

Azure 

If you check the URL of the new file it will be also following the same path format, with the container name followed by the folder name followed by the actual file name.
 
Azure


Similar Articles