c 獲取程式路徑

2022-02-26 02:06:49 字數 401 閱讀 4423

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

獲取模組的完整路徑。

string str2 = environment.currentdirectory;//

獲取和設定當前目錄

string str3=directory.getcurrentdirectory();//

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

獲取基目錄,它由程式集衝突解決程式用來探測程式集。

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

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

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

C 獲取程式路徑

1.system.reflection.assembly.getexecutingassembly location 獲取當前工程,比如dll或者應用程式的目錄。因為程式呼叫的dll,有可能在任意乙個資料夾,這方法能獲取當前呼叫的dll對應的路徑。都是獲取程式啟動路徑,區別是基類system.win...

C 獲取程式中相關路徑

12621 獲取程式的基目錄。獲取模組的完整路徑,包含檔名 system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取和設定當前目錄 該程序從中啟動的目錄 的完全限定目錄。system.environment.current...

c 獲取程式執行路徑

獲取exe路徑 注意,不要使用system.environment.currentdirectory 或system.io.directory.getcurrentdirectory 因為他們代表獲得當前路徑,可以被改變的,例如openfiledialog每換一次目錄就會改變它。獲取當前路徑的父路徑...