C 獲取相對路徑的方法

2021-06-22 23:39:53 字數 1069 閱讀 5407

c#獲取相對路徑1.

獲取和設定當前目錄的完全限定路徑。

string str = system.environment.currentdirectory; result: c:******

c#獲取相對路徑2.

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

c#獲取相對路徑3.

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

string str = system.diagnostics.process.getcurrentprocess().mainmodule.filename; result: c:*********.exe

c#獲取相對路徑4.

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

c#獲取相對路徑5.

獲取應用程式的當前工作目錄。

string str = system.io.directory.getcurrentdirectory(); result: c:******

c#獲取相對路徑6.

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

c#獲取相對路徑7.

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

string str = this.gettype().assembly.location; result: c:*********.exe

c#獲取相對路徑8.

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

此外,更多見的通過xml檔案配置具體的路徑來達到合理的規劃配置檔案的具體存放位置,如web中的配置檔案中的路徑

應用示例

streamreader smread = new streamreader(path, system.text.encoding.default); //設定路徑

c 獲取相對路徑

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

c 獲取相對路徑

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

c 獲取相對路徑

獲取路徑2相對於路徑1的相對路徑 路徑1 路徑2 返回路徑2相對於路徑1的路徑 string strpath getrelativepath c windows system32 c windows system strpath system public static string getrela...