C 獲取路徑

2021-09-06 05:35:36 字數 1368 閱讀 4582

一、應用程式

//獲取當前程序的完整路徑,包含檔名(程序名)。

string str = this.gettype().assembly.location;

result: x:\***\***\***.exe (.exe檔案所在的目錄+.exe檔名)

//獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名(程序名)。

string str = system.diagnostics.process.getcurrentprocess().mainmodule.filename;

result: x:\***\***\***.exe (.exe檔案所在的目錄+.exe檔名)

//獲取和設定當前目錄(即該程序從中啟動的目錄)的完全限定路徑。

string str = system.environment.currentdirectory;

result: x:\***\*** (.exe檔案所在的目錄)

//獲取當前 thread 的當前應用程式域的基目錄,它由程式集衝突解決程式用來探測程式集。

result: x:\***\***\ (.exe檔案所在的目錄+"\")

//獲取和設定包含該應用程式的目錄的名稱。

result: x:\***\***\ (.exe檔案所在的目錄+"\")

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

result: x:\***\*** (.exe檔案所在的目錄)

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

result: x:\***\***\***.exe (.exe檔案所在的目錄+.exe檔名)

//獲取應用程式的當前工作目錄(不可靠)。

string str = system.io.directory.getcurrentdirectory();

result: x:\***\*** (.exe檔案所在的目錄)

二、web

獲取web伺服器上的指定虛擬路徑相對應的物理檔案路徑

例如:假設應用程式在c:/iis/mysite中那麼結果就是c:/iis/mysite/1/index.html。

>對應於iis的虛擬目錄 

例如: 它的request.filepath=/1/index.html

>當前請求的虛擬路徑 

例如:path是filepath和pathinfo尾部的串聯。/pathinfo它的request.path=/1/index.html/pathinfo

三、路徑

「./」 :表示在當前路徑下

「/」:表示根目錄,絕對路徑

c 獲取路徑

5.分離字串路徑的方法 處理檔案的程式可能要分析檔名。這種演算法要進行字串處理。檔案可以 由路徑名指定,路徑名包括由分隔符 分割的名稱集。最後乙個 前的名稱序列 稱為路徑。最後乙個名稱是檔名,還可能包括副檔名。路徑名 class programs testfile.cpp 路徑 class prog...

C 獲取路徑

獲取到bin目錄的下層路徑 bin debug 獲取到bin目錄 bin debug string dd system.environment.currentdirectory string ee system.io.directory.getcurrentdirectory 獲取程式.exe wi...

c 獲取檔案路徑

一 獲取當前檔案的路徑 1.system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑,包括檔名。2.system.environment.currentdirectory 獲取和設定當前目錄 該程序從中啟動的...