2018年7月6日 星期五

[C#] 取得執行程式所在的路徑方法

取得或設定目前工作目錄的完整路徑。

System.Environment.CurrentDirectory;

取得應用程式的目前工作目錄。

System.IO.Directory.GetCurrentDirectory();

獲取當前 Thread 的當前應用程序域的基目錄,它由程序集衝突解決程序用來探測程序集。

System.AppDomain.CurrentDomain.BaseDirectory;

取得或設定包含應用程式的目錄名稱。

System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;

取得當前執行檔的路徑及檔案名稱。

System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;

取得啟動視窗程式的執行檔路徑,不含執行檔的檔案名稱。

System.Windows.Forms.Application.StartupPath;

取得啟動視窗程式的執行檔路徑及檔案名稱。

System.Windows.Forms.Application.ExecutablePath;

沒有留言:

張貼留言