本地文件

Posted oimm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了本地文件相关的知识,希望对你有一定的参考价值。

 

 

本地文件

-(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;
}

 

以上是关于本地文件的主要内容,如果未能解决你的问题,请参考以下文章

在一个活动中加载单个片段两次,从本地json文件中加载2个问题

根据图片的url地址下载图片到本地保存代码片段

微信小程序代码片段

是否可以使用Backbone获取本地JSON文件?

将本地项目文件托管到github的方法-Windows10

vscode代码片段建议bug