1
Answer

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

Photo of mohamed reda

mohamed reda

4y
556
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)