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

2021-06-01 11:50:49 字數 792 閱讀 7234

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

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

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

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

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 元件並將其與當前活動的程序關聯的主模...