查看iOS沙箱(SanBox)檔案

來源:互聯網
上載者:User

每一個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);



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.