【发布时间】:2011-05-08 01:08:58
【问题描述】:
在 Objective-C 中,我为查询设置了 NSMetaDataQuery 并设置了 setSearchScope: 以搜索特定用户的 Documents 文件夹。搜索有效,但不会沿目录树递归,仅在 Documents 文件夹中搜索。
我试过通配符,但没有乐趣。
这基本上是我尝试过的,除了不在 Documents 目录下搜索之外,它可以工作:
query = [[NSMetadataQuery alloc] init];
[query setSearchScopes:[NSArray arrayWithObjects:@"/Users/username/Documents/",nil]];
[query setPredicate:[NSPredicate predicateWithFormat:@"(kMDItemFSContentChangeDate >= '$time.this_week')"]];
[query startQuery];
【问题讨论】:
标签: objective-c cocoa spotlight nsmetadataquery