如何在 iOS 中搜索文件名中的特定文本
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该查看 NSFileManager< /a>.使用它,您可以获取目录的内容:
甚至获取文件的内容:
You should look at NSFileManager. Using it, you can get the contents of a directory:
and even get the contents of a file:
我想你可以搜索你的文件:看看使用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.
您可以使用 NSFileManager,特别是
contentsOfDirectoryAtPath:error:
或enumeratorAtPath:
方法,获取文件名列表,然后根据需要处理它们。You can use NSFileManager, particularly the
contentsOfDirectoryAtPath:error:
orenumeratorAtPath:
methods, to get the list of filenames and then process them however you want.