獲取當前程序的路徑

獲取當前程序所在路徑文件
1. System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName
-獲取模塊的完整路徑。函數

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

3. System.IO.Directory.GetCurrentDirectory()
-獲取應用程序的當前工做目錄。這個不必定是程序從中啓動的目錄啊,有可能程序放在C:\www裏,這個函數有可能返回C:\Documents and Settings\ZYB\,或者C:\Program Files\Adobe\,有時不必定返回什麼東東,我也搞不懂了。進程

4. System.AppDomain.CurrentDomain.BaseDirectory
-獲取程序的基目錄。字符串

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

6. System.Windows.Forms.Application.StartupPath
-獲取啓動了應用程序的可執行文件的路徑。效果和二、5同樣。只是5返回的字符串後面多了一個"\"而已io

7. System.Windows.Forms.Application.ExecutablePath
-獲取啓動了應用程序的可執行文件的路徑及文件名,效果和1同樣。table

對於Windows程序和Web 應用程序來講,他們運行的路徑是不同的,因此關鍵是判斷當前運行的程序是哪一種程序.因而咱們可使用以下的代碼form

string path = "";

if (System.Environment.CurrentDirectory == AppDomain.CurrentDomain.BaseDirectory)//Windows應用程序則相等

...{

path = AppDomain.CurrentDomain.BaseDirectory;

}

else

...{

path = AppDomain.CurrentDomain.BaseDirectory + "Bin\";

} 引用

一、Server.MapPath程序

二、System.Windows.Forms.StartupPath

三、Type.Assembly.Location

C#獲取當前路徑方法2能夠應用於控制檯應用程序,WinForm應用程序,Windows服務,方法1能夠應用於Web應用程序,方法3均可以應用。

但方法3是加載應用程序的路徑。若是是Web應用程序,取得的路徑是:C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files目錄。因此Web項目仍是使用Server.MapPath吧。不然建議使用方法2。若是本身新建類庫。能夠加入對System.Windows.Forms.StartupPath的引用後使用。

相關文章
相關標籤/搜索