C 獲取當前程式執行路徑的方法集合

2021-06-21 09:54:36 字數 1973 閱讀 2637

c#

獲取當前程式執行路徑的方法集合

//

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

(程序名)。

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

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

檔案所在的目錄

+"\")

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

檔案所在的目錄

+"\")

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

檔案所在的目錄)//

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

檔案所在的目錄

+.exe

檔名)

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

(不可靠)。

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

result: x:\***\*** (.exe

檔案所在的目錄)

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

此外,更多見的通過

xml檔案配置具體的路徑來達到合理的規劃配置檔案的具體存放位置,如

web中的配置檔案中的路徑。

C 獲取當前程式執行路徑

獲取當前程序的完整路徑,包含檔名 程序名 string str this.gettype assembly.location result x exe exe檔案所在的目錄 exe檔名 獲取新的 process元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名 程序名 string str ...

C 獲取當前程式執行路徑

找了一下午的文章,真的非常非常有用 獲取當前程序的完整路徑,包含檔名 程序名 string str this.gettype assembly.location result x exe exe檔案所在的目錄 exe檔名 獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包...

C 獲取當前程式執行路徑的方法集合

獲取當前程序的完整路徑,包含檔名 程序名 string str this.gettype assembly.location result x exe exe檔案所在的目錄 exe檔名 獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名 程序名 string str...