Uploading Big Files in ASP.NET Core

preview_player
Показать описание


Рекомендации по теме
Комментарии
Автор

Great video. I have read documentation saying that IFormFile should be used for small files only, in consideration of disc and memory space. Could you make a video on this, and how to optimize large file uploads using the Request.Body and streaming it to disc?

bjrnarsmme
Автор

Great video. But watch out for loading large files into memory(IFormFile load all bytes into memory); this can lead to performance issues. In that case, you can use streaming to directly upload it to storage and then process it another time.

rekarpc
Автор

Great video. How I download giant file now?

andrei.gerasjov