azure-blob-storage

What is Azure Lease Blob?

大城市里の小女人 提交于 2020-12-02 06:27:05
问题 What is Azure Lease Blob? Is it just a mechanism which provides an exclusive lock to the blob storage? What is special about it? Where can I use it? I tried to read Azure documents, but it's not clear to me yet. 回答1: What is Azure Lease Blob? Is it just a mechanism which provides an exclusive lock to the blob storage? Your understanding is correct. When you lease a blob, you acquire an exclusive lock on that blob. As long as the blob is leased, no one other than lease holder can modify or

How to download multiple files in a single request from Azure Blob Storage using c#?

[亡魂溺海] 提交于 2020-11-29 10:59:28
问题 I need to download 1000 small images from my Azure Blob Storage. I don't want to make a separate request for each file. How to do this in c#? Right now I am using Azure.Storage.Blobs and Azure.Storage.Blobs.Batch but neither of them have this API. The latter one has only DeleteBlobs call at the moment of posting this question. 回答1: I need to download 1000 small images from my Azure Blob Storage. I don't want to make a separate request for each file. How to do this in c#? Unfortunately there's