A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 许本亮 中级黑马   /  2015-11-11 09:31  /  657 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

/*

NSFileManager用法深入一

用于文件访问:获取文件、文件夹的属性和子目录的信息


*/
#import <Foundation/Foundation.h>

int main() {
    @autoreleasepool {

        NSFileManager *fm = [NSFileManager defaultManager];

        NSString *filepath = @"/Users/apple/Desktop/Block.rtf";

         NSString *dirpath = @"/Users/apple/Desktop";

       //1)获取文件的信息(属性)

        NSDictionary *dict = [fm attributesOfItemAtPath:filepath error:nil];
        NSLog(@"%@",dict);
        //找出文件创建者
        NSLog(@"%@,%@",[dict objectForKey:@"NSFileOwnerAccountName"],dict[@"NSFileOwnerAccountName"]);

        //2)获取指定目录下的文件及子目录
        //使用递归的方式获取当前目录及子目录下的所有的文件及文件夹(耗性能)

      NSArray *subPath = [fm subpathsAtPath:dirpath];

        //不是使用递归的方式获取(常用方式)
        subPath = [fm subpathsOfDirectoryAtPath:dirpath error:nil];

        //获取指定目录下的文件及目录信息(不获取后代路径)
        subPath = [fm contentsOfDirectoryAtPath:dirpath error:nil];


        NSLog(@"subPath = %@",subPath);



      }
    return 0;
}


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马