Azure Storage - Blob Copy
You will probably find this post useful, if you need to rename or copy blobs (like virtual machine page blobs or block blobs). If renaming is what you are after, you are out of luck. At the moment, Azure storage does not expose functionality to rename blobs. The workaround is to copy the blob and give it a new name. The good news is that you do not need to download the files locally ( blobs can be in the TBs scale ) i.e. Azure Blob Storage supports direct copy between subscriptions and even accounts. Searching the web for documentation and examples can be tedious as newer versions of the Azure storage SDK are not backwards compatible! The following is a simple code for copying blobs programmatically using the SDK version 7.x: // Parses a connection string and returns a CloudStorageAccount created from the connection string. var destinationStorageAccount = CloudStorageAccount.Parse(Your Destination Storage Account Connection String); var destinationCloudBlobClient = destinationStorageA...