此處項目路徑是:C:\GetPathInfo\ ...
Console.WriteLine(System.Windows.Forms.Application.StartupPath);//獲取啟動了應用程式的可執行文件的路徑,不包括可執行文件的名稱。(Windows From應用程式才有效) //輸出結果:C:\GetPathInfo\GetPath\bin\Debug Console.WriteLine(System.Environment.CurrentDirectory);//獲取或設置當前工作目錄的完全限定路徑。 //輸出結果:C:\GetPathInfo\GetPath\bin\Debug Console.WriteLine(System.IO.Directory.GetCurrentDirectory());//獲取應用程式的當前工作目錄。 //輸出結果:C:\GetPathInfo\GetPath\bin\Debug Console.WriteLine(System.AppDomain.CurrentDomain.BaseDirectory);//獲取基目錄,它由程式集衝突解決程式用來探測程式集。 //輸出結果:C:\GetPathInfo\GetPath\bin\Debug\ Console.WriteLine(System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase);//獲取或設置包含該應用程式的目錄的名稱。 //輸出結果:C:\GetPathInfo\GetPath\bin\Debug\ Console.WriteLine(System.Windows.Forms.Application.ExecutablePath);//獲取啟動了應用程式的可執行文件的路徑,包括可執行文件的名稱。(Windows From應用程式才有效) //輸出結果:C:\GetPathInfo\GetPath\bin\Debug\GetPath.EXE Console.WriteLine(System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName);//獲取模塊的完整路徑。 //輸出結果:C:\GetPathInfo\GetPath\bin\Debug\GetPath.vshost.exe
此處項目路徑是:C:\GetPathInfo\