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類方法用於返回乙個代表應用程式包的物件。
例
nsfilemanager* fm=[nsfilemanager defaultmanager];
if(![fm fileexistsatpath:[self datafilepath]])
//從nsuserdefaults中讀取資料
-(void)readnsuserdefaults
iOS 檔案目錄及NSUserDefaults
聯絡人 石虎暱稱 嗡嘛呢叭咪哄 1.ios檔案目錄 iphone沙箱模型的有四個資料夾,分別是什麼,永久資料儲存一般放在什麼位置,得到模擬器的路徑的簡單方式是什麼.手動儲存的檔案在documents檔案裡,nsuserdefaults儲存的檔案在library preferences 目錄資料夾裡 ...
iOS獲取各種檔案目錄路徑的方法
iphone沙箱模型有四個資料夾,分別是什麼,永久資料儲存一般放在什麼位置,得到模擬器的路徑的簡單方式是什麼.nshomedirectory 手動儲存的檔案在documents檔案裡 nsuserdefaults儲存的檔案在tmp資料夾裡 1 documents 目錄 您應該將所有de應用程式資料檔...
ios 檔案目錄
documents 儲存應用執行時生成的 需要持久化的資料,itunes同步裝置時 會備份該目錄。例如,遊戲應用可將遊戲存檔儲存在該目錄 library caches 儲存應用執行時生成的 需要持久化的資料,itunes同步裝置時 不會備份該目錄。一般儲存體積較大 不需要備份的非重要資料 libra...