25

从给定目录获取完整文件/文件夹路径的数组列表的技巧是什么?我希望在给定目录中搜​​索以 .mp3 结尾的文件,并且需要包含文件名的完整路径名。

NSArray* dirs = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:sourcePath error:Nil];

NSArray* mp3Files = [dirs filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"self ENDSWITH '.mp3'"]];

这仅返回文件名而不是路径

4

2 回答 2

43

最好使用块枚举数组,该块可用于连接路径和文件名,测试您想要的任何文件扩展名:

NSArray* dirs = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:sourcePath
                                                                    error:NULL];
NSMutableArray *mp3Files = [[NSMutableArray alloc] init];
[dirs enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
    NSString *filename = (NSString *)obj;
    NSString *extension = [[filename pathExtension] lowercaseString];
    if ([extension isEqualToString:@"mp3"]) {
        [mp3Files addObject:[sourcePath stringByAppendingPathComponent:filename]];
    }
}];
于 2013-11-12T09:44:02.057 回答
2

要在 URL 上使用谓词,我会这样做:

NSURL *bundleRoot = [[NSBundle mainBundle] bundleURL];
NSArray * dirContents = 
      [fm contentsOfDirectoryAtURL:bundleRoot
        includingPropertiesForKeys:@[] 
                           options:NSDirectoryEnumerationSkipsHiddenFiles
                             error:nil];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"pathExtension='.mp3'"];
NSArray *mp3Files = [directoryContents filteredArrayUsingPredicate:predicate];

这个问题可能是重复的:Getting a list of files in a directory with a glob

还有一个NSDirectoryEnumerator对象非常适合遍历目录中的文件。

于 2013-11-12T09:28:54.830 回答