1.system.reflection.assembly.getexecutingassembly().location
獲取當前工程,比如dll或者應用程式的目錄。因為程式呼叫的dll,有可能在任意乙個資料夾,這方法能獲取當前呼叫的dll對應的路徑。
都是獲取程式啟動路徑,區別是基類system.windows和system.windows.forms
獲取程式的基目錄
以上是個人常用到的路徑,完整的路徑獲取,可以參考其它部落格:
唐宋元明清2188
出處:
c 獲取程式路徑
string str system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑。string str2 environment.currentdirectory 獲取和設定當前目錄 string str3 d...
C 獲取程式中相關路徑
12621 獲取程式的基目錄。獲取模組的完整路徑,包含檔名 system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取和設定當前目錄 該程序從中啟動的目錄 的完全限定目錄。system.environment.current...
c 獲取程式執行路徑
獲取exe路徑 注意,不要使用system.environment.currentdirectory 或system.io.directory.getcurrentdirectory 因為他們代表獲得當前路徑,可以被改變的,例如openfiledialog每換一次目錄就會改變它。獲取當前路徑的父路徑...