iOS中文件操作(NSFileManager)

iOS的沙盒機制,應用只能訪問當前應用目錄下的文件內(nèi)容抽兆。應用內(nèi)所產(chǎn)生的如圖像识补、文件、緩存等內(nèi)容也都必須存儲在自己的沙盒內(nèi)辫红。
默認情況下凭涂,每個沙盒含有3個文件夾:Documents, Library 和 tmp。


CAC73620-034D-4EDE-9FE2-3AC7C6F22615.png

其中Library包含Caches贴妻、Preferences目錄切油。


D5F47D62-3B0D-405A-82D9-930B66F57963.png

(完整路徑為:/Users/xxxx/Library/Developer/CoreSimulator/Devices)

沙盒結(jié)構(gòu)

Application:存放程序源文件,上架前經(jīng)過數(shù)字簽名名惩,上架后不可修改
Documents:常用目錄澎胡,iCloud備份目錄,存放數(shù)據(jù),這里不能存緩存文件,否則上架
不被通過
Library:
&Caches:存放體積大又不需要備份的數(shù)據(jù),比如下載的音樂,視頻,SDWebImage緩存等
&Preference:設置目錄娩鹉,iCloud會備份設置信息
tmp:存放臨時文件滤馍,不會被備份,而且這個文件下的數(shù)據(jù)有可能隨時被清除的可能

1,如何獲取沙盒根路徑

-(void)directoryHome{

NSString *directoryHome=NSHomeDirectory();

NSLog(@"app_home: %@",directoryHome);

}

2,獲取Documents目錄

-(NSString *)dirDoc{

//[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, 
NSUserDomainMask, YES);

NSString *documentsDirectory = [paths objectAtIndex:0];

NSLog(@"app_home_doc: %@",documentsDirectory);

return documentsDirectory;
}

3,獲取Library目錄路徑:

//獲取Library目錄
-(void)dirLib{

//[NSHomeDirectory() stringByAppendingPathComponent:@"Library"];

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);

NSString *libraryDirectory = [paths objectAtIndex:0];

NSLog(@"app_home_lib: %@",libraryDirectory);

}```

4,獲取Cache目錄路徑:

//獲取Cache目錄
-(void)dirCache{

NSArray *cacPath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);

NSString *cachePath = [cacPath objectAtIndex:0];

NSLog(@"app_home_lib_cache: %@",cachePath);

}```

5,獲取Tmp目錄路徑:

//獲取Tmp目錄
-(void)dirTmp{

//[NSHomeDirectory() stringByAppendingPathComponent:@"tmp"];

NSString *tmpDirectory = NSTemporaryDirectory();

NSLog(@"app_home_tmp: %@",tmpDirectory);

}```

6,創(chuàng)建文件夾:

//創(chuàng)建文件夾
-(void *)createDir{

NSString *documentsPath =[self dirDoc];

NSFileManager *fileManager = [NSFileManager defaultManager];

NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@"test"];

}

創(chuàng)建目錄

BOOL res=[fileManager createDirectoryAtPath:testDirectory withIntermediateDirectories:YES attributes:nil error:nil];`

if (res) {

NSLog(@"文件夾創(chuàng)建成功");

}else

NSLog(@"文件夾創(chuàng)建失敗");

}```

7,創(chuàng)建文件

//創(chuàng)建文件
-(void *)createFile{

NSString *documentsPath =[self dirDoc];

NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@"test"];

NSFileManager *fileManager = [NSFileManager defaultManager];

NSString *testPath = [testDirectory stringByAppendingPathComponent:@"test.txt"];

BOOL res=[fileManager createFileAtPath:testPath contents:nil attributes:nil];

if (res) {

NSLog(@"文件創(chuàng)建成功: %@" ,testPath);

}else

NSLog(@"文件創(chuàng)建失敗");

}```

8,寫數(shù)據(jù)到文件

//寫文件
-(void)writeFile{

NSString *documentsPath =[self dirDoc];

NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@"test"];

NSString *testPath = [testDirectory stringByAppendingPathComponent:@"test.txt"];

NSString *content=@"測試寫入內(nèi)容底循!";

BOOL res=[content writeToFile:testPath atomically:YES encoding:NSUTF8StringEncoding error:nil];

if (res) {

NSLog(@"文件寫入成功");

}else

NSLog(@"文件寫入失敗");

}```

9,讀文件數(shù)據(jù):

//讀文件
-(void)readFile{

NSString *documentsPath =[self dirDoc];

NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@"test"];

NSString *testPath = [testDirectory stringByAppendingPathComponent:@"test.txt"];

//    NSData *data = [NSData dataWithContentsOfFile:testPath];

//    NSLog(@"文件讀取成功: %@",[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);

NSString *content=[NSString stringWithContentsOfFile:testPath encoding:NSUTF8StringEncoding error:nil];

NSLog(@"文件讀取成功: %@",content);

}```

10,文件屬性:

//文件屬性
-(void)fileAttriutes{

NSString *documentsPath =[self dirDoc];

NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@"test"];

NSFileManager *fileManager = [NSFileManager defaultManager];

NSString *testPath = [testDirectory stringByAppendingPathComponent:@"test.txt"];

NSDictionary *fileAttributes = [fileManager attributesOfItemAtPath:testPath error:nil];

NSArray *keys;

id key, value;

keys = [fileAttributes allKeys];

int count = [keys count];

for (int i = 0; i < count; i++)

{

key = [keys objectAtIndex: i];

value = [fileAttributes objectForKey: key];

NSLog (@"Key: %@ for value: %@", key, value);

}

}```

11,刪除文件

//刪除文件
-(void)deleteFile{

NSString *documentsPath =[self dirDoc];

NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@"test"];

NSFileManager *fileManager = [NSFileManager defaultManager];

NSString *testPath = [testDirectory stringByAppendingPathComponent:@"test.txt"];

BOOL res=[fileManager removeItemAtPath:testPath error:nil];

if (res) {

NSLog(@"文件刪除成功");

}else

NSLog(@"文件刪除失敗");

NSLog(@"文件是否存在: %@",[fileManager isExecutableFileAtPath:testPath]?@"YES":@"NO");

}
最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末巢株,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子熙涤,更是在濱河造成了極大的恐慌阁苞,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件祠挫,死亡現(xiàn)場離奇詭異那槽,居然都是意外死亡,警方通過查閱死者的電腦和手機等舔,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進店門骚灸,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人慌植,你說我怎么就攤上這事甚牲∫逯#” “怎么了?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵丈钙,是天一觀的道長非驮。 經(jīng)常有香客問我,道長雏赦,這世上最難降的妖魔是什么劫笙? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮星岗,結(jié)果婚禮上填大,老公的妹妹穿的比我還像新娘。我一直安慰自己俏橘,他們只是感情好允华,可當我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著敷矫,像睡著了一般例获。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上曹仗,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天榨汤,我揣著相機與錄音,去河邊找鬼怎茫。 笑死收壕,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的轨蛤。 我是一名探鬼主播蜜宪,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼祥山!你這毒婦竟也來了圃验?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤缝呕,失蹤者是張志新(化名)和其女友劉穎澳窑,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體供常,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡摊聋,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了栈暇。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片麻裁。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出煎源,到底是詐尸還是另有隱情色迂,我是刑警寧澤,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布薪夕,位于F島的核電站脚草,受9級特大地震影響赫悄,放射性物質(zhì)發(fā)生泄漏原献。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一埂淮、第九天 我趴在偏房一處隱蔽的房頂上張望姑隅。 院中可真熱鬧,春花似錦倔撞、人聲如沸讲仰。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽躏啰。三九已至,卻和暖如春给僵,著一層夾襖步出監(jiān)牢的瞬間毫捣,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工帝际, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留蔓同,地道東北人蹲诀。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓斑粱,卻偏偏與公主長得像脯爪,于是被迫代替她去往敵國和親则北。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容

  • *面試心聲:其實這些題本人都沒怎么背,但是在上海 兩周半 面了大約10家 收到差不多3個offer,總結(jié)起來就是把...
    Dove_iOS閱讀 27,125評論 29 470
  • 1披粟、 沙盒概念基本介紹 iOS 應用程序只能在該 app 的文件系統(tǒng)中讀取咒锻。這個默認的 app 文件系統(tǒng)就是我們說...
    Laughingg閱讀 2,637評論 2 10
  • 文件系統(tǒng)作為被所有進程使用的基本資源之一守屉,在macOS和iOS中主要用于處理數(shù)據(jù)文件惑艇、應用程序以及與操作系統(tǒng)自身相...
    pro648閱讀 2,662評論 0 9
  • 前言:突然想學習一下,沙盒滨巴,看了那么多博客,我四處的搜集一下總結(jié)一下恭取,為了以后方便學習,留存一篇整合的文章蜈垮。 一、...
    麥穗0615閱讀 12,182評論 5 28
  • 11歲那年攒发,你讀5年級调塌。 你坐在教室的最后一排惠猿,然后眼淚在眼眶里不停地打轉(zhuǎn)羔砾。 你不知道發(fā)生了什么就被數(shù)學老師批斗偶妖,...
    桉宇樹閱讀 931評論 4 14