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

2021-09-21 01:10:02 字數 871 閱讀 2935

c#獲取專案程式及執行路徑的方

2.c# winform用

d:「system.threading.thread.getdomain().basedirectory」:獲取當前應用程式所在目錄的路徑,最後包含「\」;

e:「environment.currentdirectory」:獲取當前應用程式的路徑,最後不包含「\」;

f:「system.io.directory.getcurrentdirectory」:獲取當前應用程式的路徑,最後不包含「\」;

用「environment.currentdirectory」和「system.io.directory.getcurrentdirectory」將得到「 system32」目錄的路徑;

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()); 獲取呼叫類的資訊,可以從父類知道子類的情況

5.獲取當前程式集執行路徑

string path = this.gettype().assembly.location;

C 學習筆記 獲取當前應用程式所在路徑及環境變數

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

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

4.在解除安裝程式獲取系統安裝的目錄 system.reflection.assembly curpath system.reflection.assembly.getexecutingassembly string path curpath.location 得到安裝程式類setuplibrary...

學習筆記之專案開發

當我們再做專案的時候,總會覺得很盲目,感覺不知道該怎麼下手。寫了又改的。當然我也是初學者,在這個學習過程當中,希望把自己所能理解的,所學的都給記下來。首先我們做專案,就比如說是乙個 購物的 吧。2.把需求文件寫好.簡單點說,比如要求做個登陸功能,註冊功能之類的 3.按照需求文件,建立用例模型 建立用...