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.
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.
void Main() { ... string PathToMyFolder = "C:\\MyFolder"; Process.Start(PathToMyFolder); ... }
learn more about Process.Start
Source: https://ru.stackoverflow.com/questions/32939/
All Articles