iOS NSFileManager和NSFileHandle及沙盒路径

沙盒机制

每一个iOS应用程序都会为自己创建一个文件系统目录(文件夹),这个独立、封闭、安全的空间叫做沙盒。沙盒就是一种安全体系,它规定了应用程序只能在为该应用程序创建的文件夹(沙盒)内访问文件,不可以访问其他沙盒内的内容(iOS8已经部分开放访问)。所有的非代码文件都保存在这个地方,比如图片、声音、属性列表(plist)、sqlite数据库和文本文件等。

文件管理器与文件对接器

文件管理器(NSFileManager):此类主要是对文件进行的操作(创建/删除/改名等)以及文件信息的获取。
文件连接器(NSFileHandle):此类主要是对文件内容进行读取和写入操作。

文件管理器(NSFileManager)

NSFileManager *fileManager = [NSFileManager defaultManager];
#pragma mark 创建文件
BOOL isFile = [fileManager createFileAtPath:[self createFilePath:fileString] contents:nil attributes:nil];
 
#pragma mark -- 创建文件夹  
BOOL isFolder = [fileManager createDirectoryAtPath:[self createFilePath:folderString] withIntermediateDirectories:YES attributes:nil error:&error];
 
#pragma mark 判断文件or文件夹是否存在 
BOOL isExistence = [fileManager fileExistsAtPath:objectPath];

#pragma mark -- 判断对象的权限是否可读
BOOL isRead = [fileManager isReadableFileAtPath:objectPath];

#pragma mark -- 判断对象是否有可写的权限
BOOL isWrit = [fileManager isWritableFileAtPath:objectPath];

#pragma mark -- 判断是否是可执行文件
BOOL isExecut = [fileManager isExecutableFileAtPath:objectPath];

#pragma mark -- 判断文件或者文件夹是否可以删除
BOOL isDelet = [fileManager isDeletableFileAtPath:objectPath];

#pragma mark 文件数据的写入
BOOL isFinish = [data writeToFile:path atomically:YES];

#pragma mark --  判断两个文件内容是否相等
BOOL isIdentical = [fileManager contentsEqualAtPath:filePath1 andPath:filePath2];

#pragma mark -- 获取可视化文件字符串
NSString * displayNameAtPath = [fileManager displayNameAtPath:path];

#pragma mark 文件或者文件夹的拷贝
//注意:被复制的文件或者文件夹不能提前存在
BOOL isFolder = [fileManager copyItemAtPath:path toPath:path1 error:&error];

#pragma mark -- 文件和文件夹的移动
// 文件夹的移动
BOOL isMove = [fileManager moveItemAtPath:Folder_M1_Path toPath:Folder_M2_Path error:&error];
// 文件的移动到另一个文件夹中
BOOL isMove = [fileManager moveItemAtPath:filePath toPath:Folder_M3_Path error:&error];

#pragma mark -- 删除文件
BOOL isRemove = [fileManager removeItemAtPath:path error:&error];

#pragma mark -- 数据读取
NSData * data = [fileManager contentsAtPath:path];
NSString * content = [[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];

#pragma mark --  获取文件或者文件夹的层次结构
NSArray * array = [fileManager subpathsAtPath:path];

#pragma mark --  获取文件或者文件夹在系统中代表的字符
const char * ar = [fileManager fileSystemRepresentationWithPath:[self createFilePath:@"SR_Love"]];

#pragma mark  --  获取文件属性
NSDictionary * FileAttribute = [fileManager attributesOfItemAtPath:FolderPath error:NULL];


文件连接器(NSFileHandle)

+ (id)fileHandleForReadingAtPath:(NSString *)path //打开一个文件准备读取
+ (id)fileHandleForWritingAtPath:(NSString *)path //打开一个文件准备写入 
+ (id)fileHandleForUpdatingAtPath:(NSString *)path //打开一个文件准备更新
- (NSData *)availableData; //从设备或通道返回可用的数据 
- (NSData *)readDataToEndOfFile; //从当前的节点读取到文件的末尾 
- (NSData *)readDataOfLength:(NSUInteger)length; // 从当前节点开始读取指定的长度数据 
- (void)writeData:(NSData *)data; //写入数据 
- (unsigned long long)offsetInFile; //获取当前文件的偏移量 
- (void)seekToFileOffset:(unsigned long long)offset; //跳到指定文件的偏移量 
- (unsigned long long)seekToEndOfFile; //跳到文件末尾 
- (void)truncateFileAtOffset:(unsigned long long)offset; //将文件的长度设为offset字节
- (void)closeFile; 关闭文件

NSFileManager的协议方法

#pragma mark  --  NSFileManagerDelegate
/**
 文件移动
 */
-(BOOL)fileManager:(NSFileManager *)fileManager shouldRemoveItemAtURL:(NSURL *)URL{
    return YES;
}
-(BOOL)fileManager:(NSFileManager *)fileManager shouldRemoveItemAtPath:(NSString *)path{
    return YES;
}
/**
 文件复制
 */
-(BOOL)fileManager:(NSFileManager *)fileManager shouldCopyItemAtURL:(NSURL *)srcURL toURL:(NSURL *)dstURL{
    return YES;
}
-(BOOL)fileManager:(NSFileManager *)fileManager shouldCopyItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath{
    return YES;
}
/**
 文件的连接
 */
-(BOOL)fileManager:(NSFileManager *)fileManager shouldLinkItemAtURL:(NSURL *)srcURL toURL:(NSURL *)dstURL{
    return YES;
}
-(BOOL)fileManager:(NSFileManager *)fileManager shouldLinkItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath{
    return YES;
}
/**
 文件的移动
 */
-(BOOL)fileManager:(NSFileManager *)fileManager shouldMoveItemAtURL:(NSURL *)srcURL toURL:(NSURL *)dstURL{
    return YES;
}
-(BOOL)fileManager:(NSFileManager *)fileManager shouldMoveItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath{
    return YES;
}
/**
 文件移除
 */
-(BOOL)fileManager:(NSFileManager *)fileManager shouldProceedAfterError:(NSError *)error removingItemAtURL:(NSURL *)URL{
    return YES;
}
- (BOOL)fileManager:(NSFileManager *)fileManager shouldProceedAfterError:(NSError *)error removingItemAtPath:(NSString *)path{
    return YES;
}
/**
 文件连接错误
 */
- (BOOL)fileManager:(NSFileManager *)fileManager shouldProceedAfterError:(NSError *)error linkingItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath{
    return YES;
}
- (BOOL)fileManager:(NSFileManager *)fileManager shouldProceedAfterError:(NSError *)error linkingItemAtURL:(NSURL *)srcURL toURL:(NSURL *)dstURL {
    return YES;
}

获取路径

/*
 ***************************************
 *获取程序的Home目录路径
 ***************************************
 */
+ (NSString *)getHomeDirectoryPath
{
    return NSHomeDirectory();
}

/*
 ***************************************
 *获取document目录路径

 ***************************************
 */
+ (NSString *)getDocumentPath
{
    NSArray *Paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *path=[Paths objectAtIndex:0];
    return path;
}
/*
 ***************************************
 *获取Cache目录路径
 ***************************************
 */
+ (NSString *)getCachePath
{
    NSArray *Paths=NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
    NSString *path=[Paths objectAtIndex:0];
    return path;
}
/*
 ***************************************
 *获取Library目录路径
 ***************************************
 */
+ (NSString *)getLibraryPath
{
    NSArray *Paths=NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
    NSString *path=[Paths objectAtIndex:0];
    return path;
}
/*
 ***************************************
 *获取Tmp目录路径
 ***************************************
 */

+ (NSString *)getTmpPath
{
    return NSTemporaryDirectory();
}

/*
***************************************
*返回Documents下的指定文件路径(加创建)
***************************************
*/
+ (NSString *)getDirectoryForDocuments:(NSString *)dir
{
   NSError* error;
   NSString* path = [[self getDocumentPath] stringByAppendingPathComponent:dir];
   if(![[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:&error])
   {
       NSLog(@"create dir error: %@",error.debugDescription);
   }
   return path;
}
/*
 ***************************************
 *返回Caches下的指定文件路径
 ***************************************
 */
+ (NSString *)getDirectoryForCaches:(NSString *)dir
{
    NSError* error;
    NSString* path = [[self getCachePath] stringByAppendingPathComponent:dir];
    if(![[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:&error])
    {
        NSLog(@"create dir error: %@",error.debugDescription);
    }
    return path;
}

/*
 ***************************************
 *创建目录文件夹
 ***************************************
 */
+ (NSString *)createList:(NSString *)List ListName:(NSString *)Name
{
    NSFileManager *fileManager=[NSFileManager defaultManager];
    NSString *FileDirectory=[List stringByAppendingPathComponent:Name];//路径拼接
    if ([self isFileExists:Name])
    {
        NSLog(@"exist,%@",Name);
    }
    else
    {
        [fileManager createDirectoryAtPath:FileDirectory withIntermediateDirectories:YES attributes:nil error:nil];
    }
    return FileDirectory;
}
/*
 ***************************************
 *写入NsArray文件
 ***************************************
 */
+ (BOOL)writeFileArray:(NSArray *)ArrarObject SpecifiedFile:(NSString *)path
{
    return [ArrarObject writeToFile:path atomically:YES];
}
/*
 ***************************************
 *写入NSDictionary文件
 ***************************************
 */
+ (BOOL)writeFileDictionary:(NSMutableDictionary *)DictionaryObject SpecifiedFile:(NSString *)path
{
    return [DictionaryObject writeToFile:path atomically:YES];
}
/*
***************************************
 *是否存在该文件
 ***************************************
 */

+ (BOOL)isFileExists:(NSString *)filepath
{
  return [[NSFileManager defaultManager] fileExistsAtPath:filepath];
}
/*
 ***************************************
 *删除指定文件
 ***************************************
 */
+ (void)deleteFile:(NSString *)filepath
{
    if([[NSFileManager defaultManager]fileExistsAtPath:filepath])
    {
        [[NSFileManager defaultManager] removeItemAtPath:filepath error:nil];
    }
}
/*
 ***************************************
 *获取目录列表里所有的文件名
 ***************************************
 */

+ (NSArray *)getSubpathsAtPath:(NSString *)path
{
    NSFileManager *fileManage=[NSFileManager defaultManager];
    NSArray *file=[fileManage subpathsAtPath:path];
    return file;
}
//删除 document/dir 目录下 所有文件
+ (void)deleteAllForDocumentsDir:(NSString *)dir
{
    NSFileManager* fileManager = [NSFileManager defaultManager];
    NSArray *fileList = [fileManager contentsOfDirectoryAtPath:[self getDirectoryForDocuments:dir] error:nil];
    for (NSString* filename in fileList) {
        [fileManager removeItemAtPath:[self getPathForDocuments:filename inDir:dir] error:nil];
    }
}
#pragma mark- 获取文件的数据
+ (NSData *)getDataForPath:(NSString *)path
{
    return [[NSFileManager defaultManager] contentsAtPath:path];
}

+ (NSData *)getDataForResource:(NSString *)name inDir:(NSString *)dir
{
    return [self getDataForPath:[self getPathForResource:name inDir:dir]];
}

+ (NSData *)getDataForDocuments:(NSString *)name inDir:(NSString *)dir
{
    return [self getDataForPath:[self getPathForDocuments:name inDir:dir]];
}

#pragma mark- 获取文件路径
+ (NSString *)getPathForResource:(NSString *)name
{
    return [[NSBundle mainBundle].resourcePath stringByAppendingPathComponent:name];
}

+ (NSString *)getPathForResource:(NSString *)name inDir:(NSString *)dir
{
    return [[[NSBundle mainBundle].resourcePath stringByAppendingPathComponent:dir] stringByAppendingPathComponent:name];
}

+ (NSString *)getPathForDocuments:(NSString *)filename
{
    return [[self getDocumentPath] stringByAppendingPathComponent:filename];
}

+ (NSString *)getPathForDocuments:(NSString *)filename inDir:(NSString *)dir
{
    return [[self getDirectoryForDocuments:dir] stringByAppendingPathComponent:filename];
}

+ (NSString *)getPathForCaches:(NSString *)filename
{
    return [[self getCachePath] stringByAppendingPathComponent:filename];
}

+ (NSString *)getPathForCaches:(NSString *)filename inDir:(NSString *)dir
{
    return [[self getDirectoryForCaches:dir] stringByAppendingPathComponent:filename];
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,816评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,729评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,300评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,780评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,890评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,084评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,151评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,912评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,355评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,666评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,809评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,504评论 4 334
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,150评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,882评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,121评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,628评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,724评论 2 351

推荐阅读更多精彩内容