沙盒路徑-iOS

weixin_33912445發表於2017-02-23

app 應用檔案
Documents:應用中使用者資料可以放在這裡,iTunes備份和恢復的時候會包括此目錄
tmp:存放臨時檔案,iTunes不會備份和恢復此目錄,此目錄下檔案可能會在應用退出後刪除
Library/Caches:存放快取檔案,iTunes不會備份此目錄,此目錄下檔案不會在應用退出刪除

NSHomeDirectory()                                      //獲取沙盒目錄
[[NSBundle mainBundle] bundlePath];                    //獲取沙盒目錄.app檔案
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *DocumentsPath = [paths objectAtIndex:0];    //獲取沙河目錄Documents資料夾
NSTemporaryDirectory()                                //獲取沙河目錄tmp資料夾

相關文章