-1

I want to copy thousands of blob files from a container to another inside a python azure web app. The python azure-storage-blob library doesn't provide methods for batch copies. What is the fastest way to do it? I found blobxfer (an advanced data movement tool and library for Azure Storage Blob and Files) but no example of code using it!

Ines
  • 1

1 Answers1

0

The fastest way would be using AzCopy, which you can call using Python too. Take a look on this previous question / answer:

Automate azure azcopy using python on windows

Thiago Custodio
  • 17,332
  • 6
  • 45
  • 90