This might be something very basic. We have developed a Blazor server application that can manage files for our internal staff. We implemented a zip file uploading method to upload folders (application extracts it in the server) as folder uploading is not currently supported in Blazor (At least that’s what I found during initial research).
But users are requesting us to make it possible to upload folders just like we can do in OneDrive/ Google drive.
How to implement this function. We are willing to use JS if it’s required.
We used .net core 7.
And we are using a InputFile to grab the files
4