ios模擬器應用程式目錄結構
1.壓縮包檔案(audiodemo) 裡面存放資源檔案(,文字檔案,多**等)
2.documents 存放應用程式資料
3.library 裡面有preference存放應用程式偏好 caches 也存放應用程式的一些資料
4.temp 存放臨時檔案
1.獲取documents資料夾
nsarray * paths=nsseartchpathfordirectoriesindomains(nsdocumentdirectory,nsuserdomainmask,yes);
nsstring * mydocumentpath=[paths objectatindex:0];
獲取檔案路徑
2.獲取tmp目錄
nsstring *temppath=nstemporarydirectory();
3.獲取壓縮包路徑
nsstring *path = [[nsbundle mainbundle] bundlepath];
nsstring *bundelpath= [[nsstring alloc] initwithformat:@"%@%@",path,@"/test.txt"];
==更新==
temp 目錄存放的檔案程式退出後將被清理
cache 目錄裡存放的檔案當裝置記憶體不足時清理
document 目錄檔案跟icould同步,要設定不同步
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...
iOS 應用程式目錄結構
ios應用程式採用的是沙盒原理設計,普及一下知識 沙盒 是在受限的安全環境中執行應用程式 的一種做法,這種做法是要限制授予應用程式的 訪問許可權。具體的特點有三點 1 每個應用程式都有自己的儲存空間 2 應用程式不能翻過自己的圍牆去訪問別的儲存空間的內容 3 應用程式請求的資料都要通過許可權檢測,假...
C 示例 獲取應用程式目錄
1.system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑 包含檔名 2.system.environment.currentdirectory 獲取和設定當前目錄 該程序從中啟動的目錄 的完全限定目錄 不...