iOS开发之NSFileManager的使用注意

作者: KODIE | 来源:发表于2017-08-17 16:53 被阅读693次

    前言瞎扯

    我们在做项目过程中难免会接触到存储文件这种操作,那么必然会和NSFileManager发生关系(你们想歪了,真邪恶~~~)

    代码预览

    那先贴一下代码吧:
    1>这个是直接给一个目录,一般用在将文件输出到桌面上好查看会直接这样用:

    NSFileManager *fileManager = [NSFileManager defaultManager];
    //查找目录,如果没有就创建一个目录
    if (![fileManager fileExistsAtPath:path]) {
        //BOOL isSuccess = [fileManager createFileAtPath: path contents:nil attributes:nil];
        NSError *error = nil;
        BOOL isSuccess = [fileManager createDirectoryAtPath: path withIntermediateDirectories:YES attributes:nil error:&error];
        NSLog(@"error = %@",error);
        NSLog(@"isSiccess = %d",isSuccess);
    }
    NSString *filePath = [NSString stringWithFormat:@"%@/helloword.txt",path ];
    NSLog(@"filePath = %@",filePath);
    NSError *error = nil;
    BOOL isSuccess = [file writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:&error];
    if (isSuccess && error == nil) {
        NSLog(@"存储成功!!!");
    }else{
        NSLog(@"error = %@",error);
        NSLog(@"存储失败!!!");
    }
    

    PS: 注释掉的这个方法如果path是文件路径就创建,如果path是一个目录,判定没有的话就调用下面这句话创建目录

    //创建文件
    BOOL isSuccess = [fileManager createFileAtPath:filePath contents:nil attributes:nil];
    
    //创建目录
    BOOL isSuccess = [fileManager createDirectoryAtPath:newDir withIntermediateDirectories:YES attributes:nil error:&error];
    

    PS: 创建目录是可以传一个error进去的,这样如果报错是可以看error的

    2>如果是存储在手机上,一般会这么做:

    NSFileManager *fileManager = [NSFileManager defaultManager];
    //创建document路径
    NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject];    
    NSString *filePath = [NSString stringWithFormat:@"%@/helloword.txt",path];    
    //查找文件,如果没有就创建一个文件
    if (![fileManager fileExistsAtPath: filePath]) {
        BOOL isSuccess = [fileManager createFileAtPath:filePath contents:nil attributes:nil];
        NSLog(@"isSiccess = %d",isSuccess);
    }
    NSError *error = nil;
    BOOL isSuccess = [file writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:&error];
    if (isSuccess && error == nil) {
        NSLog(@"存储成功!!!");
    }else{
        NSLog(@"error = %@",error);
        NSLog(@"存储失败!!!");
    }
    

    错误解决

    1>报错如下:
    主要报错:

    "Operation not permitted"
    

    详细报错:

    filePath = /Users/KODIE/Desktop/JunkCode/KODOjljwfFyvdxgObject.m
    2017-08-17 14:07:51.139040+0800 KODJunkCodeCreateDemo[12477:6111819] error = Error Domain=NSCocoaErrorDomain Code=513 "You don’t have permission to save the file “KODOjljwfFyvdxgObject.m” in the folder “JunkCode”." UserInfo={NSFilePath=/Users/KODIE/Desktop/JunkCode/KODOjljwfFyvdxgObject.m, NSUnderlyingError=0x170443a50 {Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted"}}
    

    PS: 这个是没有权限在该路径下创建文件,这个问题发生的原因是我平常喜欢用模拟器来调试,会把文件写在桌面上,但是呢由于今天不知道怎么回事开了模拟器就卡死了,所以我就用真机跑了,但是没有注意到只有模拟器才能把文件写到桌面上或者说电脑上,所以我一直也找不到什么原因,后面Google百度了好久查的烦了冷静的想了下才知道,咳,有时候也不要盲目搜啊...

    2>报错如下:
    主要报错:

    "No such file or directory"
    

    详细报错:

    Error Domain=NSCocoaErrorDomain Code=4 "The folder “KODKxqugQqqwcObject.m” doesn’t exist." UserInfo={NSFilePath=/Users/KODIE/Desktop/JunkCode/KODKxqugQqqwcObject.m, NSUserStringVariant=Folder, NSUnderlyingError=0x60000024e820 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}}
    

    PS: 这个是写文件的时候保存的时候没有创建目录,就是说写文件的时·候目录没有创建,主要是用了以下直接判断文件,而并不是判断目录创建目录,解决办法是用下面的代码改成判断文件所在的目录有没有创建,没有就创建:

    if (![fileManager fileExistsAtPath: filePath]) {
        BOOL isSuccess = [fileManager createFileAtPath:filePath contents:nil attributes:nil];
        NSLog(@"isSiccess = %d",isSuccess);
    }
    

    3>报错如下:
    主要报错:

    "Is a directory"
    

    详细报错:

    Error Domain=NSCocoaErrorDomain Code=512 "The file “KODOhwalUlwxsrObject.h” couldn’t be saved in the folder “JunkCode”." UserInfo={NSFilePath=/Users/KODIE/Desktop/JunkCode/KODOhwalUlwxsrObject.h, NSUnderlyingError=0x608000053ec0 {Error Domain=NSPOSIXErrorDomain Code=21 "Is a directory"}}
    

    PS: 写文件的时候,这是一个目录并不是一个文件,可能调用错了方法,这个很有可能是因为我们把文件路径当成是目录路径来判断了,所以直接创建了一个目录,可能调用的方法是如下但是path却是文件路径:

    if (![fileManager fileExistsAtPath:path]) {
        NSError *error = nil;
        BOOL isSuccess = [fileManager createDirectoryAtPath: path withIntermediateDirectories:YES attributes:nil error:&error];
        NSLog(@"error = %@",error);
        NSLog(@"isSiccess = %d",isSuccess);
    }
    

    使用建议

    在使用的过程中我建议是这样的,先把文件所需要在的路径判断一下是否有这个目录存在,如果不存在创建这个目录(这个目录是可以创建多级的),然后我们再写入到路径下的文件里去,这样不会有错的。

    NSString *dirPath = @"/Users/你的电脑名/Desktop/HelloWord";
    NSString *filePath = [NSString stringWithFormat:@"%@//helloword.txt",dirPath];
    NSLog(@"filePath = %@",filePath);
        
    NSFileManager *fileManager = [NSFileManager defaultManager];
    //查找目录,如果没有就创建一个目录
    if (![fileManager fileExistsAtPath: dirPath]) {
        NSError *error = nil;
        BOOL isSuccess = [fileManager createDirectoryAtPath: dirPath withIntermediateDirectories:YES attributes:nil error:&error];
        NSLog(@"error = %@",error);
        NSLog(@"isSiccess = %d",isSuccess);
    }
        
    NSError *error = nil;
    BOOL isSuccess = [file writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:&error];
    if (isSuccess && error == nil) {
        NSLog(@"存储成功!!!");
    }else{
        NSLog(@"error = %@",error);
        NSLog(@"存储失败!!!");
    }
    

    文末推荐

    iOS开发之沙盒文件操作 | iOS开发 - CocoaChina

    相关文章

      网友评论

        本文标题:iOS开发之NSFileManager的使用注意

        本文链接:https://www.haomeiwen.com/subject/ubcnrxtx.html