i have a website that has a button when i click it i need it to open the file explorer in the client PC with the destination he wrote.
i used the below code for testing
string path = @"G:APPS";
var x = Environment.GetEnvironmentVariable("WINDIR") + @"explorer.exe";
Process.Start(x, path);
the code works locally when i run it on my local pc
but when i publish it to iis the code runs but the file explorer dose not open
is there a permission or something i need to take ?