C# open windows explorer
open d:\
using System.Diagnostics;
string filepath = "D:\\";
Process.Start(filepath);
C#에서 윈도우 탐색기를 열때 사용합니다. ^^;
open d:\
using System.Diagnostics;
string filepath = "D:\\";
Process.Start(filepath);
C#에서 윈도우 탐색기를 열때 사용합니다. ^^;