1)如何找到應用程式的沙盒原始檔?
1、documents 目錄:您應該將所有的應用程式資料檔案寫入到這個目錄下。這個目錄用於儲存使用者資料或其它應該定期備份的資訊。
3、library 目錄:這個目錄下有兩個子目錄:caches 和 preferences
preferences 目錄:包含應用程式的偏好設定檔案。您不應該直接建立偏好設定檔案,而是應該使用nsuserdefaults類來取得和設定應用程式的偏好.
caches 目錄:用於存放應用程式專用的支援檔案,儲存應用程式再次啟動過程中需要的資訊。
4、tmp 目錄:這個目錄用於存放臨時檔案,儲存應用程式再次啟動過程中不需要的資訊。
獲取這些目錄路徑的方法:
第一種方式:獲取家目錄路徑的函式:?
1
nsstring *homedir = nshomedirectory();
第二種方式:獲取documents目錄路徑的方法:?
1
2
nsarray *paths = nssearchpathfordirectoriesindomains(nsdocumentdirectory, nsuserdomainmask, yes);
nsstring *docdir = [paths objectatindex:0];
第三種方式:獲取caches目錄路徑的方法:
?1
2
nsarray *paths = nssearchpathfordirectoriesindomains(nscachesdirectory, nsuserdomainmask, yes);
nsstring *cachesdir = [paths objectatindex:0];
第四種方式:獲取tmp目錄路徑的方法:
?1
nsstring *tmpdir = nstemporarydirectory();
第五種方式:獲取應用程式程式包中資源檔案路徑的方法:?
1
2
**中的mainbundle類方法用於返回乙個代表應用程式包的物件。
iphone沙盒(sandbox)中的幾個目錄獲取方式:
// 獲取沙盒主目錄路徑 ?
1
nsstring *homedir = nshomedirectory();
// 獲取documents目錄路徑 ?
1
2
nsarray *paths = nssearchpathfordirectoriesindomains(nsdocumentdirectory, nsuserdomainmask, yes);
nsstring *docdir = [paths objectatindex:0];
// 獲取caches目錄路徑 ?
1
2
nsarray *paths = nssearchpathfordirectoriesindomains(nscachesdirectory, nsuserdomainmask, yes);
nsstring *cachesdir = [paths objectatindex:0];
// 獲取tmp目錄路徑 ?
1
nsstring *tmpdir = nstemporarydirectory();
?1
2
nsstring *imagepath = [[nsbundle mainbundle] pathforresource:
oftype:
@"png"
];
例子:?
1
2
nsfilemanager* fm=[nsfilemanager defaultmanager];
if
(![fm fileexistsatpath:[self datafilepath]])
ios獲取檔案路徑的方法有多種,下面介紹一種ios中獲取檔案路徑比較簡單方法。
網上的documnet和「教程」真讓人越看越糊塗,還是自己記下吧。
首先把檔案(比如本例中的testfile.txt檔案)放置在resources分組下,然後**這樣寫:?
1
2
nsstring *filepath = [[nsbundle mainbundle] pathforresource:
@"testfile"
oftype:
@"txt"
];
nslog(
@"data path: %@"
, filepath);
輸出的日誌中你可以看到testfile.txt的路徑已經獲得。
再舉乙個例子:連線sqlite資料庫?
1
2
3
4
5
6
7
8
9
10
nsstring *datapath = [[nsbundle mainbundle] pathforresource:@
"mydata"
oftype:@
"sqlite"
];
if (sqlite3_open([datapath utf8string], &db) != sqlite_ok)
else
以上內容是ios獲取各種檔案目錄路徑的方法,希望對大家有所幫助。
IOS中獲取各種檔案的目錄路徑的方法
iphone沙箱模型的有四個資料夾,分別是什麼,永久資料儲存一般放在什麼位置,得到模擬器的路徑的簡單方式是什麼.nshomedirectory 手動儲存的檔案在documents檔案裡 nsuserdefaults儲存的檔案在tmp資料夾裡 1 documents 目錄 您應該將所有 de應用程式資...
IOS中獲取各種檔案的目錄路徑的方法
iphone沙箱模型的有四個資料夾,分別是什麼,永久資料儲存一般放在什麼位置,得到模擬器的路徑的簡單方式是什麼.nshomedirectory 手動儲存的檔案在documents檔案裡 nsuserdefaults儲存的檔案在tmp資料夾裡 1 documents 目錄 您應該將所有 de應用程式資...
IOS中獲取各種檔案的目錄路徑的方法
1.documents 2.library 3.tmp iphone沙箱模型的有四個資料夾,分別是什麼,永久資料儲存一般放在什麼位置,得到模擬器的路徑的簡單方式是什麼.nshomedirectory 手動儲存的檔案在documents檔案裡 nsuserdefaults儲存的檔案在tmp資料夾裡 1...