Hello!

How to display, i.e. display a folder window?

For example, a folder was created, and a file in it, with some content, and at the end of all this you need to open a folder window.

How to implement this using the C # language?

Thank.

  • Do you mean how to start the browser window with this folder? or something different? - Specter
  • Yes, guide) - Leshij_2005

1 answer 1

void Main() { ... string PathToMyFolder = "C:\\MyFolder"; Process.Start(PathToMyFolder); ... } 

learn more about Process.Start

  • Ok, thanks) - Leshij_2005