c#關於路徑的總結(轉)

來源:互聯網
上載者:User

標籤:ica   總結   where   專案檔   project   應用   字串   過程   系統   

來源:http://www.cnblogs.com/yugongmengjiutian/articles/5521165.html 

前一段時間寫代碼時經常遇到擷取路徑問題,總是感覺有點亂,於是就總結了下,大家若有需要可以參考

1.    在.Net中web開發時

(1)  ~/在runat=server的控制項中會自動被解析為Request.ApplicationPath的值,是當前應用程式的目錄 如

~/userCommunity/index.aspx則對應為/HENU.RCenter.Internal/UserCommunity

(2) ./表示目前的目錄

(3)../表示上一層目錄 如UserCommunity檔案夾下的檔案中可以以:../module/來訪問module中的檔案

2 擷取當前請求頁面的路徑:Request.FilePath

3 擷取項目下的檔案路徑:

string path=AppDomain. CurrentDomain .SetUpInformation.ApplicationBase+檔案夾+檔案

如擷取項目下的temp檔案夾下檔案的路徑

可以用:string savePath = AppDomain.CurrentDomain.SetupInformation.ApplicationBase + "temp" + @"\" + filename

4 Server.MapPath用法:

若在項目下Content檔案夾下的UserInfoManager.aspx代碼中寫如下路徑

this.tempPath = Server.MapPath("UploadResourceImage\\");

則返回 D:\wxm\練習\Content\UploadResourceImage

 

其它

 

一、擷取當前檔案的路徑  

1.  System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName  擷取模組的完整路徑,包括檔案名稱。

2.  System.Environment.CurrentDirectory    擷取和設定目前的目錄(該進程從中啟動的目錄)的完全限定目錄。   

3.  System.IO.Directory.GetCurrentDirectory()    擷取應用程式的當前工作目錄。這個不一定是程式從中啟動的目錄啊,有可能程式放在C:\www裡,這個函數有可能返回C:\Documents and Settings\ZYB\,或者C:\Program Files\Adobe\,有時不一定返回什麼東東,這是任何應用程式最後一次操作過的目錄,比如你用Word開啟了E:\doc\my.doc這個檔案,此時執行這個方法就返回了E:\doc了。   

4. System.AppDomain.CurrentDomain.BaseDirectory    擷取程式的基目錄。

5. System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase    擷取和設定包括該應用程式的目錄的名稱。   

6. System.Windows.Forms.Application.StartupPath    擷取啟動了應用程式的可執行檔的路徑。效果和2、5一樣。只是5返回的字串後面多了一個"\"而已   

7. System.Windows.Forms.Application.ExecutablePath    擷取啟動了應用程式的可執行檔的路徑及檔案名稱,效果和1一樣。   

二、作業環境變數    利用System.Environment.GetEnvironmentVariable()方法可以很方便地取得系統內容變數,如:    System.Environment.GetEnvironmentVariable("windir")就可以取得windows系統目錄的路徑。   

以下是一些常用的環境變數取值:   

System.Environment.GetEnvironmentVariable("windir");

System.Environment.GetEnvironmentVariable("INCLUDE");   

System.Environment.GetEnvironmentVariable("TMP");   

System.Environment.GetEnvironmentVariable("TEMP");   

System.Environment.GetEnvironmentVariable("Path");   

最後貼出我進行上面操作獲得的變數值,事先說明,本人是編寫了一個WinForm程式,專案檔存放於D:\Visual Studio Projects\MyApplication\LifeAssistant,編譯後的檔案位於D:\Visual Studio Projects\MyApplication\LifeAssistant\bin\Debug,最後的結果如下:

1、System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName=D:\Visual Studio Projects\MyApplication\LifeAssistant\bin\Debug\LifeAssistant.exe   

2、System.Environment.CurrentDirectory=D:\Visual Studio Projects\MyApplication\LifeAssistant\bin\Debug   

3、System.IO.Directory.GetCurrentDirectory()=D:\Visual Studio Projects\MyApplication\LifeAssistant\bin\Debug   

1 asp.net webform用"Request.PhysicalApplicationPath擷取網站所在虛擬目錄的實體路徑,最後包含"\";   

2.c# winform用   

A:"Application.StartupPath":擷取當前應用程式所在目錄的路徑,最後不包含"\";   

B:"Application.ExecutablePath ":擷取當前應用程式檔案的路徑,包含檔案的名稱;   

C:"AppDomain.CurrentDomain.BaseDirectory":擷取當前應用程式所在目錄的路徑,最後包含"\";   

D:"System.Threading.Thread.GetDomain().BaseDirectory":擷取當前應用程式所在目錄的路徑,最後包含"\";   

E:"Environment.CurrentDirectory":擷取當前應用程式的路徑,最後不包含"\";   

F:"System.IO.Directory.GetCurrentDirectory":擷取當前應用程式的路徑,最後不包含"\";    3.c# windows service用"AppDomain.CurrentDomain.BaseDirectory"或"System.Threading.Thread.GetDomain().BaseDirectory";   用"Environment.CurrentDirectory"和"System.IO.Directory.GetCurrentDirectory"將得到" system32"目錄的路徑;   

如果要使用"Application.StartupPath"或"Application.ExecutablePath ",需要手動添加對"System.Windows.Forms.dll "的引用,並在程式開頭用"using System.Windows.Forms"聲明該引用;   

4.在卸載程式擷取系統安裝的目錄:   

System.Reflection.Assembly curPath = System.Reflection.Assembly.GetExecutingAssembly();   

string path=curPath.Location;//得到安裝程式類SetupLibrary檔案的路徑,擷取這個檔案路徑所在的目錄即得到安裝程式的目錄;   

4、System.AppDomain.CurrentDomain.BaseDirectory=D:\Visual Studio Projects\MyApplication\LifeAssistant\bin\Debug\   

5、System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase=D:\Visual Studio Projects\MyApplication\LifeAssistant\bin\Debug\   

6、System.Windows.Forms.Application.StartupPath=D:\Visual Studio Projects\MyApplication\LifeAssistant\bin\Debug   

7、System.Windows.Forms.Application.ExecutablePath=D:\Visual Studio Projects\MyApplication\LifeAssistant\bin\Debug\LifeAssistant.exe    System.Environment.GetEnvironmentVariable("windir")=C:\WINDOWS   

System.Environment.GetEnvironmentVariable("INCLUDE")=C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include\   

System.Environment.GetEnvironmentVariable("TMP")=C:\DOCUME~1\zhoufoxcn\LOCALS~1\Temp   

System.Environment.GetEnvironmentVariable("TEMP")=C:\DOCUME~1\zhoufoxcn\LOCALS~1\Temp   

System.Environment.GetEnvironmentVariable("Path")=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\jdk1.5.0\bin;C:\MySQLServer5.0\bin;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\Microsoft SQL Server\80\Tools\BINN   

C# 相對路徑 系統路徑   

//擷取啟動了應用程式的可執行檔的路徑,不包括可執行檔的名稱。 

string  str5=Application.StartupPath;    //可獲得當前執行的exe的檔案名稱。 

string  str1  =Process.GetCurrentProcess().MainModule.FileName;    //擷取和設定目前的目錄(即該進程從中啟動的目錄)的完全限定路徑。備忘  按照定義,如果該進程在本地或網路磁碟機的根目錄中啟動,則此屬性的值為磁碟機名稱後跟一個尾部反斜線(如"C:\")。如果該進程在子目錄中啟動,則此屬性的值為不帶尾部反斜線的磁碟機和子目錄路徑(如"C:\mySubDirectory")。

  string  str2=Environment.CurrentDirectory;    //擷取應用程式的當前工作目錄。

  string  str3=Directory.GetCurrentDirectory();    //擷取基目錄,它由程式集衝突解決程式用來探測程式集。  string  str4=AppDomain.CurrentDomain.BaseDirectory;    //擷取啟動了應用程式的可執行檔的路徑,不包括可執行檔的名稱。  string  str5=Application.StartupPath;    //擷取啟動了應用程式的可執行檔的路徑,包括可執行檔的名稱。 

string  str6=Application.ExecutablePath;    //擷取或設定包含該應用程式的目錄的名稱。    string  str7=AppDomain.CurrentDomain.SetupInformation.ApplicationBase;    //例子    Application.StartupPath;    //可以得到F:\learning\c#Training\win\win\bin\Debug    //注意自己補兩個\    Application.StartupPath+"\\3.jpg";

在c#中,相對路徑是用"."和".."表示,   "."代表目前的目錄,    ".."代表上一級錄。    例如 假設我用vs2005在D:\My Documents\Visual Studio 2005\Projects目錄裡建立了一個名叫controls的項目,即在Projects檔案夾裡有一個controls檔案夾,controls檔案夾裡有三個檔案:controls.sln  controls檔案夾  GulfOfStLawrence檔案夾。    D:\My Documents\Visual Studio 2005\Projects\Controls\Controls\bin\Debug是這個簡單項目能夠啟動並執行可執行檔Controls.exe    現在我想要 D:\My Documents\Visual Studio 2005\Projects\Controls\GulfOfStLawrence檔案夾下的Gulf_of_St._Lawrence.mxd(arcgis desktop)工程檔案路徑。    那麼相對路徑應該就是"..\..\..\GulfOfStLawrence\Gulf_of_St._Lawrence.mxd"    即string filename = @"..\..\..\GulfOfStLawrence\Gulf_of_St._Lawrence.mxd";   

心得:

1.用相對路徑能增加項目的可移植性。使一個工程在移植過程中變得簡單,節省了大量布置與工程相關的檔案的時間。(如果設定的是絕對路徑)。 

2.使用相對路徑也使程式碼變得簡單 

3. 但有一點必須注意:(只能在同一個磁碟機裡(如:都在D:裡)使用相對路徑)。

 

c#關於路徑的總結(轉)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.