Download multiple files from azure blob container through portal instead of one at a time

Viewed 5517

Is there a way to download multiple files from the azure portal blob container ? Download option goes away when I select multiple files. Of course we can do one file at a time

enter image description here

1 Answers

Unfortunately, we are currently unable to download multiple blobs from azure storage in the azure portal.

In fact, not only azure portal, but also cannot be downloaded in batches programmatically, you can refer to this answer:

https://stackoverflow.com/a/60950916/13832613

Update:

You can install Azure Storage Explore locally and use it to download multiple blobs, I did a test, and it works well:

enter image description here

Related