如何在 iOS 中搜索文件名中的特定文本

发布于 2024-11-08 12:16:29 字数 91 浏览 0 评论 0原文

我的 iPad 应用程序在其目录中存储了数千个文件,我希望能够搜索这些文件。我该怎么做呢?我意识到我可能无法搜索文件的内容,但只要能够搜索文件名就很好了。有什么想法吗?

My iPad app stores thousands of files in it's directory, and I'd like to be able to search these files. How would I go about doing this? I realize I probably can't search the contents of the files, but just being able to search the filenames would be nice. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

煮酒 2024-11-15 12:16:29

您应该查看 NSFileManager< /a>.使用它,您可以获取目录的内容:

- (NSArray *)contentsOfDirectoryAtPath:(NSString *)path error:(NSError **)error

甚至获取文件的内容:

- (NSData *)contentsAtPath:(NSString *)path

You should look at NSFileManager. Using it, you can get the contents of a directory:

- (NSArray *)contentsOfDirectoryAtPath:(NSString *)path error:(NSError **)error

and even get the contents of a file:

- (NSData *)contentsAtPath:(NSString *)path
王权女流氓 2024-11-15 12:16:29

我想你可以搜索你的文件:看看使用Cocoa进行全文搜索。它讨论了两种方法:LuceneKit 和 sqlite。

I think you can search your files: Have a look at Full-text search with Cocoa. It discusses two approaches: LuceneKit and sqlite.

≈。彩虹 2024-11-15 12:16:29

您可以使用 NSFileManager,特别是 contentsOfDirectoryAtPath:error:enumeratorAtPath: 方法,获取文件名列表,然后根据需要处理它们。

You can use NSFileManager, particularly the contentsOfDirectoryAtPath:error: or enumeratorAtPath: methods, to get the list of filenames and then process them however you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文