G Guest Oct 25, 2004 #1 Hi, How can I open (in a normal folder window) a folder from my program. thanks
S Shiva Oct 25, 2004 #2 Process.Start (@"C:\Program Files\"); // Or any valid path Hi, How can I open (in a normal folder window) a folder from my program. thanks
Process.Start (@"C:\Program Files\"); // Or any valid path Hi, How can I open (in a normal folder window) a folder from my program. thanks
N Nicholas Paldino [.NET/C# MVP] Oct 25, 2004 #3 Jesper, If you want to open it up in another window, you should be able to pass the path to the static Start method on the Process class, and it should open. Hope this helps.
Jesper, If you want to open it up in another window, you should be able to pass the path to the static Start method on the Process class, and it should open. Hope this helps.