每一個iOS程式都一個自己的檔案系統,這個檔案系統叫應用程式沙箱(SanBox),它存放這代碼以外的檔案,其他的應用程式不能訪問到該程式的沙箱,
如何在本地查看應用程式沙箱?
正常情況下,Finder檔案下有一部分檔案被隱藏起來,防止被使用者破壞,在終端裡面用命令開啟
顯示Mac隱藏檔案的命令:defaults write com.apple.finder AppleShowAllFiles -booltrue
隱藏Mac隱藏檔案的命令:defaults write com.apple.finder AppleShowAllFiles -boolfalse
在終端輸入以上命令後,斷行符號,然後重啟Finder
重啟Finder步驟:
然後開啟Mac上硬碟檔案,找到使用者目錄,比如我的
顏色淺一點的,矩形畫框圈起來(僅僅標記部分)的都是系統隱藏的檔案,開啟使用者
開啟使用者目錄 我的是rjxy
開啟rjxy下面“資產庫”,這個檔案在正常也是被隱藏起來的
找到Application Support檔案
對比一下我們建立工程檔案夾和模擬器中沙箱下面檔案夾
工程目錄下
沙箱中
此處輸出database.sqlite3的路徑
databse--->/Users/rjxy/Library/Application Support/iPhone Simulator/5.1/Applications/07001BF1-D6C5-4B8C-8E8A-D7B1E4D130EA/Documents/database.sqlite3
以下是尋找database.sqlite3方法
#define kDatabaseName @"database.sqlite3"
databaseFilePath是NSString對象
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentDirectory = [paths objectAtIndex:0]; self.databaseFilePath = [documentDirectory stringByAppendingPathComponent:kDatabaseName]; NSLog(@"databse--->%@",databaseFilePath);