c 學習筆記之獲取當前路徑

2021-07-16 10:24:15 字數 818 閱讀 6830

winform獲取應用程式的當前路徑的方法集合,具體如下,值得收藏

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

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 的當前應用程式域的基目錄,它由程式集衝突解決程式用來探測程式集。

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

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

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

//獲取應用程式的當前工作目錄(不可靠)。

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

result: x:\***\*** (.exe檔案所在的目錄)

C 獲取當前路徑

c 獲取當前路徑的7種方法 c 獲取當前路徑的方法如下 1.system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑。2.system.environment.currentdirectory 獲取和設定當前...

C 獲取專案當前路徑

獲取應用程式的當前工作目錄。string path1 system.io.directory.getcurrentdirectory console.writeline path1.tostring apolloautotest testresults 123 out apolloautotest ...

C 獲取檔案當前路徑

1.system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑。2.system.environment.currentdirectory 獲取和設定當前目錄 該程序從中啟動的目錄 的完全限定目錄。3.syst...