< doctype html public -wcdtd xhtml stricten httpwwwworgtrxhtmldtdxhtml-strictdtd> c# winform,用
system.threading.thread.getdomain().basedirectory:獲取當前應用程式所在目錄的路徑;
environment.currentdirectory:獲取和設定當前目錄(即該程序從中啟動的目錄)的完全限定路徑;
system.io.directory.getcurrentdirectory:獲取應用程式的當前工作目錄;
c# windows service,用:
environment.currentdirectory 和 system.io.directory.getcurrentdirectory 將得到 system32 目錄的路徑。
asp.net,用:
system.windows.forms.startuppath;
type.assembly.location;
方法 2 可以應用於控制台應用程式,winform 應用程式,windows 服務,方法 1 可以應用於 web 應用程式,方法 3 都可以應用。
#c#專欄
c 獲取應用程式目錄
得到結果 d 1 bin debug 路徑測試.vshost.exe d 1 bin debug d 1 bin debug d 1 bin debug d 1 bin debug d 1 bin debug d 1 bin debug 路徑測試.exe 1.system.diagnostics.p...
C 示例 獲取應用程式目錄
1.system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑 包含檔名 2.system.environment.currentdirectory 獲取和設定當前目錄 該程序從中啟動的目錄 的完全限定目錄 不...
iOS 應用程式目錄結構
ios應用程式採用的是沙盒原理設計,普及一下知識 沙盒 是在受限的安全環境中執行應用程式 的一種做法,這種做法是要限制授予應用程式的 訪問許可權。具體的特點有三點 1 每個應用程式都有自己的儲存空間 2 應用程式不能翻過自己的圍牆去訪問別的儲存空間的內容 3 應用程式請求的資料都要通過許可權檢測,假...