How do I upload very large files to asp net core? I want to access a
Stream
Stream
of the file without waiting for the files to be uploaded completely. A 20 GB file should use the same memory footprint as a 1 MB file. Storing the file temporarily on Disk is also not an option.
I already tried to remove
FormValueProviderFactory
FormValueProviderFactory
,
FormFileValueProviderFactory
FormFileValueProviderFactory
,
JQueryFormValueProviderFactory
JQueryFormValueProviderFactory
. But when I access the raw
Request.Body
Request.Body
I get some header which I don't know how to parse correctly.