I'm working on a Blazor Server Side application which is used ONLY inside our network. The application handles Building Permits. So far so good.
Historically, the permits were done manually and all related files (blueprints, letters etc) where saved on our fileserver and accessed through Windows Explorer.
To be able to keep the same workflow for file handling, I am tasked to open windows explorer from the Blazor app.
I'm quite aware that this is far from recommended and I tried talking people out of it, but to no avail.
So: is there a way to open a specific location in Windows Explorer directly. I know that you can link to a HREF="file:\my-server\path\to\share", but that only shows the directory listing. There is no way to add files, copy, paste, rename, whatever...
UPDATE (2021-07-08): This is in a controlled environment. The application is NOT public. I would never ever do such a thing for a public application. The people who use the application are pretty limited and will know about the functionality.