using System.Diagnostics;
//資料夾路徑
string myPath = @"C:\Users\Charlotte\Desktop\123";
System.Diagnostics.Process prc = new System.Diagnostics.Process();
prc.StartInfo.FileName = myPath;
prc.Start();
文章標籤
全站熱搜
部落格全站分類:心情日記
using System.Diagnostics;
//資料夾路徑
string myPath = @"C:\Users\Charlotte\Desktop\123";
System.Diagnostics.Process prc = new System.Diagnostics.Process();
prc.StartInfo.FileName = myPath;
prc.Start();