是否可以在整个iPhone中搜索pdf文件?

时间:2011-11-29 07:56:58

标签: iphone nsfilemanager

我想在整个iphone上搜索每一个pdf文件。这可能在iphone sdk中吗? 我尝试过以下代码,但它提供了我们自己的应用程序文件。

 NSString *bundleRoot = [[NSBundle mainBundle] bundlePath];
 NSArray *dirContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:bundleRoot error:nil];
 NSArray *onlyPDFs = [dirContents filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"self ENDSWITH '.pdf'"]];

1 个答案:

答案 0 :(得分:5)

每个应用程序(及其相关文件)都在iOS下进行沙盒化,因此您将无法访问自己的应用程序生成的文件以外的文件。

即:这是不可能的。