Hi all,
I ve a drive like GMail drive...i want to open it from my c# windows application...How can i do that...I m using this code ...
System.Diagnostics.Process proc = new
System.Diagnostics.
Process();proc.StartInfo.FileName =
"explorer";proc.StartInfo.Arguments =
"GMail Drive";proc.Start();
its throwing exception..."The path 'GMail Drive' does not exist or is not a directory"
but the same code opens other logicaldrives like c:\ or d:\..
plz give me some hint if possible...
plz help.....
Replies
Know the answer? Post it — somebody with the same question will find it here.