我有一个NSArray
完整的NSDictionary
对象。该结构是从数据库构建的。我正在构建一个仅在调试时包含和执行的验证功能。这个想法是确保所有需要的文件实际上都包括在内,并且不包括任何额外的文件。
基于这个问题,我尝试使用 aNSPredicate
但它将 thr 目录中的每个文件标记为“文件不在数据库中”。
我究竟做错了什么?
KEY_DFILE
#定义为@"dFilename"
.
#ifdef DEBUG
- (void)checkItems
{
NSFileManager *fileManager = [NSFileManager defaultManager];
NSLog(@"-------- Database / File Check --------");
for (NSDictionary* item in self.allItmes)
{
// ansi items
if ([[item objectForKey:KEY_TYPE] isEqualToString:@"ansi"])
{
// Make sure the datafile exists
NSString* path = [[NSBundle mainBundle] pathForResource:[item objectForKey: KEY_DFILE] ofType:nil inDirectory:@"ansi"];
if (![fileManager fileExistsAtPath:path])
NSLog(@"Can't find file: %@", path);
}
}
NSString *dir = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"ansi"];
NSDirectoryEnumerator* en = [fileManager enumeratorAtPath:dir];
NSString* file;
while (file = [en nextObject])
{
NSPredicate *p = [NSPredicate predicateWithFormat:@"%@ == %@", KEY_DFILE, file];
NSArray *matchedDicts = [self.allItmes filteredArrayUsingPredicate:p];
if ([matchedDicts count] == 0)
{
NSLog(@"File not in Database: %@", file);
}
else if ([matchedDicts count] > 1)
{
NSLog(@"File in Database more than once: %@", file);
}
}
NSLog(@"---------------------------------------");
}
#endif