1
Answer

how to open folder in new form by using C#?

mohamed reda

mohamed reda

4y
530
1
i used the following code to open a folder on drive E:\
 
System.Diagnostics.Process.Start("explorer.exe", @"E:\teste");
 
the question is " how to open the folder "teste" inside form by using C#
Answers (1)