每一個iOS程序都一個自己的文件系統,這個文件系統叫應用程序沙盒(SanBox),它存放這代碼以外的文件,其他的應用程序不能訪問到該程序的沙盒,
如何在本地查看應用程序沙盒?
正常情況下,Finder文件下有一部分文件被隱藏起來,防止被用戶破壞,在終端裡面用命令打開
顯示Mac隱藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true
隱藏Mac隱藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool false
在終端輸入以上命令後,回車,然後重啟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對象
[cpp]
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentDirectory = [paths objectAtIndex:0];
self.databaseFilePath = [documentDirectory stringByAppendingPathComponent:kDatabaseName];
NSLog(@"databse--->%@",databaseFilePath);