Replies: 2 comments 10 replies
-
Also the OpenReadStream example always throws this exception with very small files (1-2MB) after hitting
I even found a similar code that I could not get running either... humm.. |
Beta Was this translation helpful? Give feedback.
2 replies
-
I don't remember we have any limit on the file size. We have our own implementation for the file uploading that is not using any code from the native Blazor file input. If this is a Blazor/WebAssembly limitation I also don't think we could do anything. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Any change to have a Large File Upload component for Blazor WASM (or update FileEdit)? There seems to be a hard file size limit for Blazor of Int32.MaxValue = 2147483647 bytes .
When uploading a >2GB file I can't read it to a buffer and then send it to external API. I would either want to read it in and directly stream it to an API or brake it down into "chunks" and push it to API like e.g Syncfusion does does.
To be sure if there is a <2GB limit I asked this question but its totally unclear to me if it's still a limit in .net 6 (I will be moving there next week).
Beta Was this translation helpful? Give feedback.
All reactions