码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发 - 检测路径下文件夹是否存在

时间:2015-11-27 20:02:25      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:

 NSFileManager *fileManager = [NSFileManager defaultManager];

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

    NSString *libraryPath = [homePath objectAtIndex:0];

    NSString *tempPath = [libraryPath stringByAppendingPathComponent:@"Application Support"];

    

    //判断temp文件夹是否存在

    BOOL tempFileExists = [fileManager fileExistsAtPath:tempPath];

    if (!tempFileExists) {//如果不存在说创建,因为下载时,不会自动创建文件夹

        

        NSLog(@"没有");

    } else {

        NSLog(@"有");

    }

 

iOS开发 - 检测路径下文件夹是否存在

标签:

原文地址:http://www.cnblogs.com/xvewuzhijing/p/5001448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!