TheWebGuy
TheWebGuy

Reputation: 12615

Moving azure storage containers from one blob to another

Hello I have two blobs in my account:

Blob2 is empty, how can I take all the containers from Blob1 and move it to Blob2?

I am doing this because I would like to use a different subscription to help save some money. It doesn't seem like its possible any other way.

This is all under the same windows live account.

Thank you!

Upvotes: 2

Views: 3355

Answers (1)

Serdar Ozler
Serdar Ozler

Reputation: 3802

I am glad to hear that Azure Support was able to reassign your subscription. In the future, if you would like to copy Azure Storage blobs from one account to another, you can use the Copy Blob REST API. If you are using Azure Storage Client Library, the corresponding method is ICloudBlob.StartCopyFromBlob. The Blob service copies blobs on a best-effort basis and you can use the value of x-ms-copy-id header to check the status of a specific copy operation.

Upvotes: 2

Related Questions