iOS中NSFileManager文件常用操作整合

原文出處 http://blog.csdn.net/feng2qing/article/details/54974200

//獲取Document路徑

+ (NSString*)getDocumentPath

{NSArray*filePaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES);return[filePaths objectAtIndex:0];

}

//獲取Library路徑

+ (NSString*)getLibraryPath

{NSArray*filePaths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask,YES);return[filePaths objectAtIndex:0];

}

//獲取應(yīng)用程序路徑+ (NSString*)getApplicationPath

{returnNSHomeDirectory();

}

//獲取Cache路徑

+ (NSString*)getCachePath

{NSArray*filePaths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask,YES);return[filePaths objectAtIndex:0];

}

//獲取Temp路徑+ (NSString*)getTempPath

{returnNSTemporaryDirectory();

}

//判斷文件是否存在于某個(gè)路徑中

+ (BOOL)fileIsExistOfPath:(NSString*)filePath

{BOOLflag =NO;NSFileManager*fileManager = [NSFileManagerdefaultManager];if([fileManager fileExistsAtPath:filePath]) {

flag =YES;

}else{

flag =NO;

}returnflag;

}

//從某個(gè)路徑中移除文件

+ (BOOL)removeFileOfPath:(NSString*)filePath

{BOOLflag =YES;NSFileManager*fileManage = [NSFileManagerdefaultManager];if([fileManage fileExistsAtPath:filePath]) {if(![fileManage removeItemAtPath:filePath error:nil]) {

flag =NO;

}

}returnflag;

}

//從URL路徑中移除文件

- (BOOL)removeFileOfURL:(NSURL*)fileURL

{BOOLflag =YES;NSFileManager*fileManage = [NSFileManagerdefaultManager];if([fileManage fileExistsAtPath:fileURL.path]) {if(![fileManage removeItemAtURL:fileURL error:nil]) {

flag =NO;

}

}returnflag;

}

//創(chuàng)建文件路徑

+(BOOL)creatDirectoryWithPath:(NSString*)dirPath

{BOOLret =YES;BOOLisExist = [[NSFileManagerdefaultManager] fileExistsAtPath:dirPath];if(!isExist) {NSError*error;BOOLisSuccess = [[NSFileManagerdefaultManager] createDirectoryAtPath:dirPath withIntermediateDirectories:YESattributes:nilerror:&error];if(!isSuccess) {

ret =NO;NSLog(@"creat Directory Failed. errorInfo:%@",error);

}

}returnret;

}

//創(chuàng)建文件

+ (BOOL)creatFileWithPath:(NSString*)filePath

{BOOLisSuccess =YES;NSFileManager*fileManager = [NSFileManagerdefaultManager];BOOLtemp = [fileManager fileExistsAtPath:filePath];if(temp) {returnYES;

}NSError*error;//stringByDeletingLastPathComponent:刪除最后一個(gè)路徑節(jié)點(diǎn)NSString*dirPath = [filePath stringByDeletingLastPathComponent];

isSuccess = [fileManager createDirectoryAtPath:dirPath withIntermediateDirectories:YESattributes:nilerror:&error];if(error) {NSLog(@"creat File Failed. errorInfo:%@",error);

}if(!isSuccess) {returnisSuccess;

}

isSuccess = [fileManager createFileAtPath:filePath contents:nilattributes:nil];returnisSuccess;

}

//保存文件

+ (BOOL)saveFile:(NSString*)filePath withData:(NSData *)data

{BOOLret =YES;

ret = [selfcreatFileWithPath:filePath];if(ret) {

ret = [data writeToFile:filePath atomically:YES];if(!ret) {NSLog(@"%s Failed",__FUNCTION__);

}

}else{NSLog(@"%s Failed",__FUNCTION__);

}returnret;

}//追加寫文件+ (BOOL)appendData:(NSData *)data withPath:(NSString*)path

{BOOLresult = [selfcreatFileWithPath:path];if(result) {

NSFileHandle *handle = [NSFileHandle fileHandleForWritingAtPath:path];

[handle seekToEndOfFile];

[handle writeData:data];

[handle synchronizeFile];

[handle closeFile];returnYES;

}else{NSLog(@"%s Failed",__FUNCTION__);returnNO;

}

}

//獲取文件

+ (NSData *)getFileData:(NSString*)filePath

{

NSFileHandle *handle = [NSFileHandle fileHandleForReadingAtPath:filePath];

NSData *fileData = [handle readDataToEndOfFile];

[handle closeFile];returnfileData;

}

//讀取文件

+ (NSData *)getFileData:(NSString*)filePath startIndex:(longlong)startIndex length:(NSInteger)length

{

NSFileHandle *handle = [NSFileHandle fileHandleForReadingAtPath:filePath];

[handle seekToFileOffset:startIndex];

NSData *data = [handle readDataOfLength:length];

[handle closeFile];returndata;

}

//移動(dòng)文件

+ (BOOL)moveFileFromPath:(NSString*)fromPath toPath:(NSString*)toPath

{NSFileManager*fileManager = [NSFileManagerdefaultManager];if(![fileManager fileExistsAtPath:fromPath]) {NSLog(@"Error: fromPath Not Exist");returnNO;

}if(![fileManager fileExistsAtPath:toPath]) {NSLog(@"Error: toPath Not Exist");returnNO;

}NSString*headerComponent = [toPath stringByDeletingLastPathComponent];if([selfcreatFileWithPath:headerComponent]) {return[fileManager moveItemAtPath:fromPath toPath:toPath error:nil];

}else{returnNO;

}

}

//拷貝文件

+(BOOL)copyFileFromPath:(NSString*)fromPath toPath:(NSString*)toPath

{NSFileManager*fileManager = [NSFileManagerdefaultManager];if(![fileManager fileExistsAtPath:fromPath]) {NSLog(@"Error: fromPath Not Exist");returnNO;

}if(![fileManager fileExistsAtPath:toPath]) {NSLog(@"Error: toPath Not Exist");returnNO;

}NSString*headerComponent = [toPath stringByDeletingLastPathComponent];if([selfcreatFileWithPath:headerComponent]) {return[fileManager copyItemAtPath:fromPath toPath:toPath error:nil];

}else{returnNO;

}

}

//獲取文件夾下文件列表

+ (NSArray*)getFileListInFolderWithPath:(NSString*)path

{NSFileManager*fileManager = [NSFileManagerdefaultManager];NSError*error;NSArray*fileList = [fileManager contentsOfDirectoryAtPath:path error:&error];if(error) {NSLog(@"getFileListInFolderWithPathFailed, errorInfo:%@",error);

}returnfileList;

}

//獲取文件大小

+ (longlong)getFileSizeWithPath:(NSString*)path

{

unsignedlonglongfileLength =0;

NSNumber*fileSize;

NSFileManager*fileManager = [NSFileManagerdefaultManager];NSDictionary*fileAttributes = [fileManager attributesOfItemAtPath:path error:nil];

if((fileSize = [fileAttributes objectForKey:NSFileSize])) {

fileLength = [fileSize unsignedLongLongValue];

return fileLength;

}

//

NSFileManager* manager =[NSFileManager defaultManager];

//? ?

?if ([manager fileExistsAtPath:path]){

//? ? ? ??

return [[manager attributesOfItemAtPath:path error:nil] fileSize];

//??

? }

//

? ? return 0;

}

//獲取文件創(chuàng)建時(shí)間

+ (NSString*)getFileCreatDateWithPath:(NSString*)path

{NSString*date =nil;NSFileManager*fileManager = [NSFileManagerdefaultManager];NSDictionary*fileAttributes = [fileManager attributesOfItemAtPath:path error:nil];

date = [fileAttributes objectForKey:NSFileCreationDate];returndate;

}

//獲取文件所有者

+ (NSString*)getFileOwnerWithPath:(NSString*)path

{NSString*fileOwner =nil;NSFileManager*fileManager = [NSFileManagerdefaultManager];NSDictionary*fileAttributes = [fileManager attributesOfItemAtPath:path error:nil];

fileOwner = [fileAttributes objectForKey:NSFileOwnerAccountName];returnfileOwner;

}

//獲取文件更改日期

+ (NSString*)getFileChangeDateWithPath:(NSString*)path

{NSString*date =nil;NSFileManager*fileManager = [NSFileManagerdefaultManager];NSDictionary*fileAttributes = [fileManager attributesOfItemAtPath:path error:nil];

date = [fileAttributes objectForKey:NSFileModificationDate];returndate;

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末左医,一起剝皮案震驚了整個(gè)濱河市杖挣,隨后出現(xiàn)的幾起案子瞒渠,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,686評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異巩检,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)椅寺,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,668評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門浑槽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人返帕,你說我怎么就攤上這事桐玻。” “怎么了荆萤?”我有些...
    開封第一講書人閱讀 158,160評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵镊靴,是天一觀的道長。 經(jīng)常有香客問我链韭,道長偏竟,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,736評(píng)論 1 284
  • 正文 為了忘掉前任敞峭,我火速辦了婚禮踊谋,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘旋讹。我一直安慰自己殖蚕,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,847評(píng)論 6 386
  • 文/花漫 我一把揭開白布沉迹。 她就那樣靜靜地躺著睦疫,像睡著了一般。 火紅的嫁衣襯著肌膚如雪鞭呕。 梳的紋絲不亂的頭發(fā)上蛤育,一...
    開封第一講書人閱讀 50,043評(píng)論 1 291
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼缨伊。 笑死摘刑,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的刻坊。 我是一名探鬼主播枷恕,決...
    沈念sama閱讀 39,129評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼谭胚!你這毒婦竟也來了徐块?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,872評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤灾而,失蹤者是張志新(化名)和其女友劉穎胡控,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體旁趟,經(jīng)...
    沈念sama閱讀 44,318評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡昼激,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,645評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了锡搜。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片橙困。...
    茶點(diǎn)故事閱讀 38,777評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖耕餐,靈堂內(nèi)的尸體忽然破棺而出凡傅,到底是詐尸還是另有隱情,我是刑警寧澤肠缔,帶...
    沈念sama閱讀 34,470評(píng)論 4 333
  • 正文 年R本政府宣布夏跷,位于F島的核電站,受9級(jí)特大地震影響明未,放射性物質(zhì)發(fā)生泄漏槽华。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,126評(píng)論 3 317
  • 文/蒙蒙 一趟妥、第九天 我趴在偏房一處隱蔽的房頂上張望硼莽。 院中可真熱鬧,春花似錦煮纵、人聲如沸懂鸵。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,861評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽匆光。三九已至,卻和暖如春酿联,著一層夾襖步出監(jiān)牢的瞬間终息,已是汗流浹背夺巩。 一陣腳步聲響...
    開封第一講書人閱讀 32,095評(píng)論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留周崭,地道東北人柳譬。 一個(gè)月前我還...
    沈念sama閱讀 46,589評(píng)論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像续镇,于是被迫代替她去往敵國和親美澳。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,687評(píng)論 2 351

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

  • 一、iOS中的沙盒機(jī)制 ?iOS應(yīng)用程序只能對(duì)自己創(chuàng)建的文件系統(tǒng)讀取文件酱虎,這個(gè)獨(dú)立雨膨、封閉、安全的空間读串,叫做沙盒聊记。它...
    舒城8中閱讀 2,385評(píng)論 0 6
  • 一、iOS中的沙盒機(jī)制 iOS應(yīng)用程序只能對(duì)自己創(chuàng)建的文件系統(tǒng)讀取文件恢暖,這個(gè)獨(dú)立甥雕、封閉、安全的空間胀茵,叫做沙盒。它一...
    絢雨藍(lán)了個(gè)楓閱讀 4,088評(píng)論 0 2
  • 27挟阻、ViewController的didReceiveMemoryWarning是在什么時(shí)候調(diào)用的琼娘?默認(rèn)的操作是...
    煙雨平生花飛舞閱讀 566評(píng)論 0 1
  • 昨天一天下午還真是個(gè)種查,各種搜索附鸽,然后各種技術(shù)群脱拼,各種問,(沒人鳥我)坷备,其實(shí)我是有這個(gè)能力的熄浓,怎么就一上...
    夢隨興飛閱讀 25,076評(píng)論 7 18
  • 一、iOS中的沙盒機(jī)制 iOS應(yīng)用程序只能對(duì)自己創(chuàng)建的文件系統(tǒng)讀取文件省撑,這個(gè)獨(dú)立赌蔑、封閉、安全的空間竟秫,叫做沙盒娃惯。它一...
    1d5cb7cff98d閱讀 1,768評(píng)論 0 0