使用 Ruby 驱动程序列出 GridFS 目录中的文件

发布于 2024-11-18 12:23:08 字数 169 浏览 2 评论 0原文

是否可以使用 ruby​​ mongo 驱动程序列出给定 GridFS 目录中的所有文件? 我搜索了文档,但没有找到令人满意的内容。更重要的是,我也找不到任何通过元数据搜索文件的方法。 我检查了 java 驱动程序的文档,这两个功能都可以使用 GridFS 类开箱即用。

最好的问候,

米哈乌

Is it possible to list all files in given GridFS directory using ruby mongo driver?
I've searched through documentation and have not found anything satisfying. What is more I cannot find any way to search files by metadata too.
I have checked java driver's documentation and both of these functionalities are available out of the box using GridFS class.

Best regards,

Michał

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

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

发布评论

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

评论(1

孤凫 2024-11-25 12:23:08
grid = Mongo::Grid.new(Mongoid.database)
files = grid.instance_variable_get :@files
files.find("filename" => "uploads/143-normal_regular2.jpg").as_json

# files.remove - deletes alle files

对于块同样适用

grid = Mongo::Grid.new(Mongoid.database)
files = grid.instance_variable_get :@files
files.find("filename" => "uploads/143-normal_regular2.jpg").as_json

# files.remove - deletes alle files

same works for chunks

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