C#中AppDomain.CurrentDomain.BaseDirectory及各類路徑獲取方法


// 獲取程序的基目錄。
System.AppDomain.CurrentDomain.BaseDirectory

// 獲取模塊的完整路徑,包含文件名
System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName

// 獲取和設置當前目錄(該進程從中啓動的目錄)的徹底限定目錄。
System.Environment.CurrentDirectory

// 獲取應用程序的當前工做目錄,注意工做目錄是能夠改變的,而不限定在程序所在目錄
System.IO.Directory.GetCurrentDirectory()

// 獲取和設置包括該應用程序的目錄的名稱。
System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase

// 獲取啓動了應用程序的可執行文件的路徑。
System.Windows.Forms.Application.StartupPath

// 獲取啓動了應用程序的可執行文件的路徑及文件名
System.Windows.Forms.Application.ExecutablePathorm

相關文章
相關標籤/搜索