C 獲取執行程式所在的當前路徑的方法

2021-06-20 13:59:47 字數 826 閱讀 9715



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

string str = system.environment.currentdirectory;

result: c:\***\***

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

result: c:\***\***

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

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

result: c:\***\***\***.exe

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

result: c:\***\***\

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

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

result: c:\***\***

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

result: c:\***\***\

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

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

result: c:\***\***\***.exe

result: c:\***\***\***.exe

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

獲取本執行程式所在的當前路徑

1.獲取和設定當前目錄的完全限定路徑。string str system.environment.currentdirectory result c 3.獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名。string str system.diagnostics....

獲取本執行程式所在的當前路徑

1.獲取和設定當前目錄的完全限定路徑。string str system.environment.currentdirectory result c 3.獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名。string str system.diagnostics....

C 獲取本執行程式所在的當前路徑

1.獲取和設定當前目錄的完全限定路徑。string str system.environment.currentdirectory result c 2.獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱。result c 3.獲取新的 process 元件並將其與當前活動的程序關聯的主模...