码迷,mamicode.com
首页 > 其他好文 > 详细

本地文件

时间:2018-10-24 20:20:10      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:Fix   oca   sse   while   cti   pre   main   rate   fork   

 

 

本地文件

-(NSMutableDictionary *)localFile {
    NSString *path = [[NSBundle mainBundle] bundlePath];
    NSFileManager *fm = [NSFileManager defaultManager];
    NSDirectoryEnumerator *dirEnum = [fm enumeratorAtPath:path];
    NSString *fileName;
    NSMutableDictionary *R = [NSMutableDictionary dictionary];
    while (fileName = [dirEnum nextObject]) {
        NSLog(@"短路径:%@", fileName);
        NSLog(@"全路径:%@", [path stringByAppendingPathComponent:fileName]);
        if ([fileName hasSuffix:@".png"]) {
            NSString *key = [fileName componentsSeparatedByString:@"/"].lastObject;
            [R setObject:fileName forKey:key];
        }
    }
    return R;
}

 

本地文件

标签:Fix   oca   sse   while   cti   pre   main   rate   fork   

原文地址:https://www.cnblogs.com/OIMM/p/9844921.html

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