C 獲取專案程式及執行路徑的方法

2021-05-21 22:41:30 字數 429 閱讀 6007

4.在解除安裝程式獲取系統安裝的目錄:

system.reflection.assembly curpath = system.reflection.assembly.getexecutingassembly();

string path=curpath.location;//得到安裝程式類setuplibrary檔案的路徑,獲取這個檔案路徑所在的目錄即得到安裝程式的目錄;

system.diagnostics.stackframe f = new system.diagnostics.stackframe(1);

methodbase mb = f.getmethod();

system.web.httpcontext.current.response.write(mb.declaringtype.tostring()); 獲取呼叫類的資訊,可以從父類知道子類的情況

c 獲取程式執行路徑

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

C 獲取程式執行路徑的幾種方法

通過控制台程式列印出每種方法的結果 static void main string args typeof program assembly.location console.writeline console.writeline process.getcurrentprocess mainmodu...

C 開發學習筆記 獲取專案程式及執行路徑的方

c 獲取專案程式及執行路徑的方 2.c winform用 d system.threading.thread.getdomain basedirectory 獲取當前應用程式所在目錄的路徑,最後包含 e environment.currentdirectory 獲取當前應用程式的路徑,最後不包含 f...