0
votes

Working on copying Azure Storage Account blobs one one subscription to another. Does anyone know if files (blobs) are copied in sequence? For example:

  • Folder1
    • File1
    • File2
    • File3
  • Folder2
    • File1
    • File2
    • File3 . . .

Are the above copied in the order shown? I am using "Az Storage Blob Copy" command.

Thanks

1
yes, this command is copied in sequence.Cindy Pau

1 Answers

0
votes

Yes, it is copied in sequence. But it can not copy folder. The command will take folder as blob, and then it will throw out error.

The bulk copy is like this:

az storage blob copy start-batch --account-key xxx --account-name xxx --destination-container xxx --source-account-name xxx --source-account-key xxx --source-container xxx

And this is the doc:

https://docs.microsoft.com/en-us/cli/azure/storage/blob/copy?view=azure-cli-latest