Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种方法来搜索包含特定文本的文件,例如 grep,但使用 Dropbox 核心 API。我发现的唯一搜索功能似乎只搜索文件名,甚至不支持正则表达式。有谁知道我可以实现这个的方法吗?
As you noted, the Dropbox API doesn't support this. If you need to support this in an app you're building, you would need to maintain your own search index.
我决定只制作一个使用 grep 并输出到我的应用程序将读取的文本文件的 bash 脚本。