I have an API application (server side: C# ASP.NET Core 7, client side: React).
I need to allow downloading files and uploading files, up to 5 GB. How would you recommend I do this?
I understand that recommended to do this asynchronously and with streaming. (and uploaded with chunk).
I tried some sample code snippets from the internet and it didn't work properly.
I would be happy to help both how it should be and if you can give me an example that works.
Thank you!