Mahmoud Samy
Mahmoud Samy

Reputation: 2852

How can I download a file form Azure BLOB storage

I have large files already on my Azure BLOB storage. Now at the client side and using azure SDK v2.0 I can download the files a stream as described here.

My problem is: The SDK only allows me to download the blob as a stream and I want to download my files in chunks to make the downloads resume-able.

Upvotes: 3

Views: 2385

Answers (1)

Nathan
Nathan

Reputation: 1016

You can use CloudBlockBlob.DownloadRangeToStream to read parts of a blob.

Upvotes: 4

Related Questions