Open a folder from your program

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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.
 
Back
Top