1 //獲取模塊的完整路徑。 2 string path1 = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName; 3 //獲取和設置當前目錄(該進程從中啟動的目錄)的完全限定目錄 4 string path2 = System.Environment.CurrentDirectory; 5 //獲取應用程序的當前工作目錄 6 string path3 = System.IO.Directory.GetCurrentDirectory(); 7 //獲取程序的基目錄 8 string path4 = System.AppDomain.CurrentDomain.BaseDirectory; 9 //獲取和設置包括該應用程序的目錄的名稱 10 string path5 = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase; 11 //獲取啟動了應用程序的可執行文件的路徑 12 string path6 = System.Windows.Forms.Application.StartupPath; 13 //獲取啟動了應用程序的可執行文件的路徑及文件名 14 string path7 = System.Windows.Forms.Application.ExecutablePath; 15 16 StringBuilder str=new StringBuilder(); 17 str.AppendLine("System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName:" + path1); 18 str.AppendLine("System.Environment.CurrentDirectory:" + path2); 19 str.AppendLine("System.IO.Directory.GetCurrentDirectory():" + path3); 20 str.AppendLine("System.AppDomain.CurrentDomain.BaseDirectory:" + path4); 21 str.AppendLine("System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase:" + path5); 22 str.AppendLine("System.Windows.Forms.Application.StartupPath:" + path6); 23 str.AppendLine("System.Windows.Forms.Application.ExecutablePath:" + path7); 24 string allPath = str.ToString(); 25 26 /* 輸出結果 27 * System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName:D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release\XmlAndXsd.vshost.exe 28 System.Environment.CurrentDirectory:D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release 29 System.IO.Directory.GetCurrentDirectory():D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release 30 System.AppDomain.CurrentDomain.BaseDirectory:D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release\ 31 System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase:D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release\ 32 System.Windows.Forms.Application.StartupPath:D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release 33 System.Windows.Forms.Application.ExecutablePath:D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release\XmlAndXsd.EXE
.Net Framework中System.IO.Directory.GetCurrentDirectory()方法用於獲得應用程序當前工作目錄。如果使用此方法獲得應用程序所在的目錄,應該注意:System.IO.Directory.GetCurrentDirectory()方法獲得的目錄路徑隨着OpenFileDialog、SaveFileDialog等對象所確定的目錄而改變(切換工作目錄)。每打開一次文件夾或者使用資源管理器查看一下文件,都會更改此方法獲得的值。
而System.Windows.Forms.Application.StartupPath或System.AppDomain.CurrentDomain.BaseDirectory可以獲得應用程序運行所在的目錄,它是不隨你打開的文件夾而變的。只跟應用程序運行目錄有關,其值等於應用程序啟動的根目錄。例如你安裝了程序在了C:\Program Files\程序文件夾 的位置下,那么他就是System.Windows.Forms.Application.StartupPath的值。
