Azure / azure-storage-cpplite

Lite version of C++ Client Library for Microsoft Azure Storage
MIT License
25 stars 44 forks source link

Unable to upload huge file with the blob_client class #125

Open erwandrezen opened 3 years ago

erwandrezen commented 3 years ago

I got a strange behaviour when uploading a file > 4GB.

Actually, it seems that the 'set_content_length' uses a unsigned int, which may have a sizeof of 4, and therefore does not allow values greater than 4 GB.

I patched the input parameter type to unsigned long long and I managed to break this file size limitation.

Regards