iOS 獲取檔案的目錄路徑的幾種方法

2021-07-06 09:37:20 字數 1744 閱讀 4260

iphone沙箱模型的有四個資料夾,分別是什麼,永久資料儲存一般放在什麼位置,得到模擬器的路徑的簡單方式是什麼.

(nshomedirectory())手動儲存的檔案在documents檔案裡

nsuserdefaults儲存的檔案在tmp資料夾裡

1、documents 目錄:您應該將所有的應用程式資料檔案寫入到這個目錄下。這個目錄用於儲存使用者資料或其它應該定期備份的資訊。

3、library 目錄:這個目錄下有兩個子目錄:caches 和 preferences

preferences 目錄:包含應用程式的偏好設定檔案。您不應該直接建立偏好設定檔案,而是應該使用nsuserdefaults類來取得和設定應用程式的偏好.

caches 目錄:用於存放應用程式專用的支援檔案,儲存應用程式再次啟動過程中需要的資訊。

4、tmp 目錄:這個目錄用於存放臨時檔案,儲存應用程式再次啟動過程中不需要的資訊。

獲取這些目錄路徑的方法:

1,獲取家目錄路徑的函式:

nsstring *homedir = nshomedirectory();

2,獲取documents目錄路徑的方法:

nsarray *paths = nssearchpathfordirectoriesindomains(nsdocumentdirectory, nsuserdomainmask, yes);

nsstring *docdir = [paths objectatindex:0];

3,獲取caches目錄路徑的方法:

nsarray *paths = nssearchpathfordirectoriesindomains(nscachesdirectory, nsuserdomainmask, yes);

nsstring *cachesdir = [paths objectatindex:0];

4,獲取tmp目錄路徑的方法:

nsstring *tmpdir = nstemporarydirectory();

5,獲取應用程式程式包中資源檔案路徑的方法:

**中的mainbundle類方法用於返回乙個代表應用程式包的物件。

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();  

例子:nsfilemanager* fm=[nsfilemanager defaultmanager];

if(![fm fileexistsatpath:[self datafilepath]])

iOS 獲取檔案的目錄路徑的幾種方法

iphone沙箱模型的有四個資料夾,分別是什麼,永久資料儲存一般放在什麼位置,得到模擬器的路徑的簡單方式是什麼.nshomedirectory 手動儲存的檔案在documents檔案裡 nsuserdefaults儲存的檔案在tmp資料夾裡 1 documents 目錄 您應該將所有的應用程式資料檔...

iOS 獲取檔案的目錄路徑的幾種方法

iphone沙箱模型的有四個資料夾,分別是什麼,永久資料儲存一般放在什麼位置,得到模擬器的路徑的簡單方式是什麼.nshomedirectory 手動儲存的檔案在documents檔案裡 nsuserdefaults儲存的檔案在tmp資料夾裡 1 documents 目錄 您應該將所有的應用程式資料檔...

iOS獲取各種檔案目錄路徑的方法

iphone沙箱模型有四個資料夾,分別是什麼,永久資料儲存一般放在什麼位置,得到模擬器的路徑的簡單方式是什麼.nshomedirectory 手動儲存的檔案在documents檔案裡 nsuserdefaults儲存的檔案在tmp資料夾裡 1 documents 目錄 您應該將所有de應用程式資料檔...