Windows Explorer argument not being interpreted?
- by MarceloRamires
I'm currently using:
Process.Start("explorer.exe", "/Select, " + fullPath); //with file name.extension
That basically tells windows explorer to open the folder where the file is in, with the given file selected.
But, by the forces of evil, sometimes it works and sometimes it just opens the file ("/select" is... ignored)
Has anyone ever experienced this?
If it changes anything, it's a file in a local network and the path looks like this
\\server\folder\subfolder\something\file.ext
(of course in c# every '\' is doubled, and @ is not a choice, the path is generated by something else)
I'll be constantly reading comments to supply any aditional information