Get azure blob files inside Sub Directories
In Microsoft doc's we can find code to get blob files inside a container using c#. What if Container has some Sub Directories with blob data/files. How we can replicate the folder structure in our local machine. There might a change Container contains empty folder or a file. Below code snippet will help to create the same Azure Container structure. here i have used ASPX pages as per my requirement. we can use other applications as well. To get Azure connection string use below URL: https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string public string storageAccountName = "azure storage account name"; public string accessKey = "your azure accesskey"; public string containerName = "myfirstblobcontainer"; public string connectiongString = "Azure connection string"; publ...