C
Colin Williams
I am trying to open windows explorer at a specific path on a server.
Path is not found
whe run. It works ok using a local path. How do i address a server?
Code as follows;
{
System.Diagnostics.ProcessStartInfo exploreTest
= new System.Diagnostics.ProcessStartInfo();
exploreTest.FileName = "explorer.exe";
exploreTest.Arguments ="\"\\servername\\path\\";
System.Diagnostics.Process.Start(exploreTest);
}
Thanks
Colin Williams
Path is not found
whe run. It works ok using a local path. How do i address a server?
Code as follows;
{
System.Diagnostics.ProcessStartInfo exploreTest
= new System.Diagnostics.ProcessStartInfo();
exploreTest.FileName = "explorer.exe";
exploreTest.Arguments ="\"\\servername\\path\\";
System.Diagnostics.Process.Start(exploreTest);
}
Thanks
Colin Williams