+ 1
Maximum how many files we can download from Azure blob storage?
Want to download maximum number of files from Azure blob storage in single request.
4 ответов
+ 1
There is a 4 MB limit to download requests. Larger downloads need to be broken up. You can get the total bytes of the file, download 4 MB, and run the job again for the remaining bytes until remaining bytes are = to 0.
+ 1
Kail Galestorm thank you so much dear ...and also .i was looking for the microsoft doc but did not found anything related to that.. if you have any documentation realted to that..can you share with me?
+ 1
https://docs.microsoft.com/en-us/azure/storage/blobs/storage-quickstart-blobs-dotnet
should get you started. There should be "related topic"
+ 1
Thank youKail Galestorm