HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了iphone – 如何在iOS中递归收集我的软件包中的所有资源路径?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我的应用程序包中有一个“解压缩”的文件夹.我需要获取txt类型的所有文件的资源路径.我一直在用这个,

NSArray *filePaths = [NSBundle pathsForresourcesOfType:@"txt" inDirectory:[[[NSBundle mainBundle] bundlePath] StringByAppendingString:@"/unzipped"]];

但是它只能在第一个目录中获取文件.有没有一个递归的版本,我刚刚错过的地方?

解决方法

我使用@rekle发布的代码作为起点,得到了这个工作.诀窍就是使用NSDirectoryEnumerator,它会递归地执行.这是我写的功能,万一有人需要它.

- (NSArray *)recursivePathsForresourcesOfType:(NSString *)type inDirectory:(NSString *)directoryPath{

    NSMutableArray *filePaths = [[NSMutableArray alloc] init];

    // Enumerators are recursive
    NSDirectoryEnumerator *enumerator = [[[NSFileManager defaultManager] enumeratorAtPath:directoryPath] retain];

    NSString *filePath;

    while ((filePath = [enumerator nextObject]) != nil){

        // If we have the right type of file,add it to the list
        // Make sure to prepend the directory path
        if([[filePath pathExtension] isEqualToString:type]){
            [filePaths addObject:[directoryPath StringByAppendingPathComponent:filePath]];
        }
    }

    [enumerator release];

    return [filePaths autorelease];
}

Swift,使用NSURL

func recursivePathsForresources(type type: String) -> [NSURL] {

    // Enumerators are recursive
    let enumerator = NSFileManager.defaultManager().enumeratorAtPath(bundlePath)
    var filePaths = [NSURL]()

    while let filePath = enumerator?.nextObject() as? String {

        if NSURL(fileURLWithPath: filePath).pathExtension == type {
            filePaths.append(bundleURl.URLByAppendingPathComponent(filePath))
        }
    }

    return filePaths
}

大佬总结

以上是大佬教程为你收集整理的iphone – 如何在iOS中递归收集我的软件包中的所有资源路径?全部内容,希望文章能够帮你解决iphone – 如何在iOS中递归收集我的软件包中的所有资源路径?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。