1、獲得當前執行的exe的檔名
string filename = process.getcurrentprocess().mainmodule.filename;2、獲取和設定當前目錄(即該程序從中啟動的目錄)的完全限定路徑。
string path = environment.currentdirectory;3、獲取應用程式的當前工作目錄(備註:按照定義,如果該程序在本地或網路驅動器的根目錄中啟動,則此屬性的值為驅動器名稱後跟乙個尾部反斜槓(如「c:\」)。如果該程序在子目錄中啟動,則此屬性的值為不帶尾部反斜槓的驅動器和子目錄路徑[如「c:\mysubdirectory」])。
string path = directory.getcurrentdirectory();4、獲取基目錄,它由程式集衝突解決程式用來探測程式集。
5、獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱。
6、獲取啟動了應用程式的可執行檔案的路徑,包括可執行檔案的名稱。
7、獲取或設定包含該應用程式的目錄的名稱。
取得系統環境變數方法:
system.environment.getenvironmentvariable();
以下是一些常用的環境變數取值:
system.environment.getenvironmentvariable(「windir」);案例:編寫了乙個winform程式,專案檔案存放於d:\projects\demo,編譯後的檔案位於d:\projects\demo\bin\debug,最後的結果如下:system.environment.getenvironmentvariable(「include」);
system.environment.getenvironmentvariable(「tmp」);
system.environment.getenvironmentvariable(「temp」);
system.environment.getenvironmentvariable(「path」);
方法取得值
system.diagnostics.process.getcurrentprocess().mainmodule.filename
d:\projects\demo\bin\debug\demo.vshost.exe
system.environment.currentdirectory
d:\projects\demo\bin\debug
system.io.directory.getcurrentdirectory()
d:\projects\demo\bin\debug
d:\projects\demo\bin\debug\
d:\projects\demo\bin\debug\
d:\projects\demo\bin\debug
d:\projects\demo\bin\debug\demo.exe
system.environment.getenvironmentvariable(「windir」)
c:\windows
system.environment.getenvironmentvariable(「include」)
c:\program files\microsoft visual studio.net 2005\sdk\v2.0\include\
system.environment.getenvironmentvariable(「tmp」)
c:\docume1\admini1\locals~1\temp
system.environment.getenvironmentvariable(「temp」)
c:\docume1\admini1\locals~1\temp
system.environment.getenvironmentvariable(「path」)
c:\windows\system32;c:\windows;c:\windows\system32\wbem;c:\program files\microsoft sql server\90\tools\binn\
C 獲取當前目錄
答案一答案二 獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名 程序名 string str system.diagnostics.process.getcurrentprocess mainmodule.filename result x exe exe檔案所在...
獲取當前目錄
tchar exefullpath max path getmodulefilename getmodulehandle null exefullpath,max path tcsrchr exefullpath,t 1 0 這是一段獲得程式當前目錄的一段 這段 很簡單,唯一有點難度的就是最後一句 ...
C 獲取程式執行目錄當前目錄
獲取程式的基目錄。獲取模組的完整路徑。system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取和設定當前目錄 該程序從中啟動的目錄 的完全限定目錄。system.environment.currentdirectory 獲...