C#打開資料夾(指定路徑和啟動檔案總管)

C#打開資料夾(指定路徑和啟動檔案總管)

C#打開資料夾(指定路徑和啟動檔案總管)


資料來源:http://daniel20219.pixnet.net/blog/post/145510626-(c%23)-%E9%96%8B%E5%95%9F%E8%B7%AF%E5%BE%91%E8%B3%87%E6%96%99%E5%A4%BE


 

string path = System.Windows.Forms.Application.StartupPath;//取得當下系統執行位置
System.Diagnostics.Process.Start(path);

 

 

One thought on “C#打開資料夾(指定路徑和啟動檔案總管)


  1. //public static string m_StrSysPath = System.Windows.Forms.Application.StartupPath;// .net 4X - Forms
    //public static string m_StrSysPath = AppDomain.CurrentDomain.BaseDirectory;// .net 4X - Console
    public static string m_StrSysPath = Directory.GetCurrentDirectory()+"\\"; //通用寫法

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *