iphone沙箱模型的有四個資料夾,分別是什麼,永久資料儲存一般放在什麼位置,得到模擬器的路徑的簡單方式是什麼.
(nshomedirectory()),
手動儲存的檔案在documents檔案裡
nsuserdefaults儲存的檔案在tmp資料夾裡
1、documents 目錄:
您應該將所有
de應用程式資料檔案寫入到這個目錄下。這個目錄用於儲存使用者資料或其它應該定期備份的
資訊。這是應用程式
的程式包目錄,包含應用程式
的本身。由於應用程式必須經過簽名,
所以您在執行時不能對這個目錄中
的內容進行修改,否則可能會使應用程式無法啟動。
3、library 目錄:
這個目錄下有兩個子目錄:caches 和 preferences
preferences 目錄:
包含應用程式
的偏好設定檔案。您不應該直接建立偏好設定檔案,而是應該使用nsuserdefaults類來取得和設定應用程式
的偏好.
caches 目錄:
用於存放應用程式專用
的支援檔案,儲存應用程式再次啟動過程中需要
的資訊。
4、tmp 目錄:
這個目錄用於存放臨時檔案,儲存應用程式再次啟動過程中不需要的資訊。
iphone沙盒(sandbox)中的幾個目錄獲取方式:
// 獲取沙盒主目錄路徑
nsstring *homedir = nshomedirectory();
// 獲取documents目錄路徑
nsarray *paths = nssearchpathfordirectoriesindomains(nsdocumentdirectory, nsuserdomainmask, yes);
nsstring *docdir = [paths objectatindex:0];
// 獲取caches目錄路徑
nsarray *paths = nssearchpathfordirectoriesindomains(nscachesdirectory, nsuserdomainmask, yes);
nsstring *cachesdir = [paths objectatindex:0];
// 獲取tmp目錄路徑
nsstring *tmpdir = nstemporarydirectory();iew pla
例子:
nsfilemanager* fm=[nsfilemanager defaultmanager];
if(![fm fileexistsatpath:[self datafilepath]])
iOS沙盒路徑
ios沙河路徑極其作用 documents 儲存使用者資料,itunes備份會包括此目錄下資料。library 包含兩個子目錄 caches 和 preferences。caches 存放使用者需要快取的資料 快取需要有清理操作 tmp 用於存放臨時檔案,此目錄下檔案可能會在應用退出後刪除。檢視路徑...
iOS沙盒路徑
ios的沙盒下面主要包含該以下三個檔案 documents library 內含caches和preferences temp。home目錄 nsstring homedirectory nshomedirectory 1.documents 簡介該目錄會被itunes自動備份,建議儲存需要持久化儲...
關於iOS沙盒路徑問題
預設情況下,每個沙盒含有3個資料夾 documents,library 和 tmp。documents 蘋果建議將程式中建立的或在程式中瀏覽到的檔案資料儲存在該目錄下 library 儲存程式的預設設定或其它狀態資訊 tmp 提供乙個即時建立臨時檔案的地方。itunes在與iphone同步時,備份所...