本文介绍了使用NSPredicate过滤NSFileManger内容以获取文件“模式”列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个字符串数组用作过滤器:
I've an array of strings to be used as a 'filter':
@[@"*.png", @".DS_Store", @"Foobar", @".jpg"]
怎么办我可以使用上述模式使用NSPredicate过滤掉文件夹的所有内容吗?
How do I use above pattern to filter out all the contents of a folder using NSPredicate?
这是到目前为止我得到的:
This is what I've got so far:
NSArray *contents = [fileManager contentsOfDirectoryAtPath:fullPath error:NULL];
NSArray *filter = @[@"*.png", @".DS_Store", @"Foobar", @".jpg"];
NSArray *contents = [contents filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"((pathExtension IN[cd] %@) OR (lastPathComponent IN[cd] %@)) ", filter, filter]];
但这并没有给我想要的结果。例如,未过滤 png
文件。另外,我不能使它不区分大小写,因此不会过滤掉 foobar
。
But this doesn't give me the result that I want. For an example png
files are not filtered. Also, I couldn't make this it case-insensitive so foobar
is not filtered out.
推荐答案
看看
NSArray *contents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:@"/Users/new/Desktop/" error:nil];
NSArray *extensions = [NSArray arrayWithObjects:@"jpg", @"png",nil];
NSArray *files = [contents filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"!(pathExtension IN %@) AND !(self LIKE[c] %@)", extensions, @"Foobar"]];
//[c] for case insensitive
这篇关于使用NSPredicate过滤NSFileManger内容以获取文件“模式”列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!