简体   繁体   中英

How much large file we can upload to Azure file share in a single shot in .net core 3.1

I need to upload a large file (140 mb) to Azure file share. Please let me know how much large file I can upload using FileShareClient upload method in C#

The maximum size of a file in a File Share is 4 TiB ( Reference ) so you can definitely store a 140MB file in Azure File Share.

However you cannot upload a 140MB file in Azure File Share in a single shot. For that you will need to upload it in chunks where each chunk cannot be more than 4MB ( Reference ).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM