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

2021-09-09 04:49:56 字數 482 閱讀 3461

1.獲取和設定當前目錄的完全限定路徑。 string str = system.environment.currentdirectory;

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

3.獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名。 string str = system.diagnostics.process.getcurrentprocess().mainmodule.filename; result: c:\***\***\***.exe

5.獲取應用程式的當前工作目錄。 string str = system.io.directory.getcurrentdirectory();

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

7.獲取當前程序的完整路徑,包含檔名。 string str = this.gettype().assembly.location;

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

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

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

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

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