在 Rails 中列出来自网络的文件
我希望能够使用 Rails 列出网络上远程目录中的文件(例如,列出文件夹中的每个图片以移动它们并对它们进行一些处理)。
所以我尝试首先通过执行以下操作来列出它们:
<% @files = Dir.glob("\\my\directory\on\the network\*" ) %>
<% @files.each do |file| %>
<%= file %>
<% end %>
但我没有输出,什么都没有,甚至没有错误消息或其他内容。 如果有人有线索...
谢谢!
I'd like to be able to list files from a distant directory on the network with Rails (for instance, listing every pictures in a folder to move them and do some processing on them).
So I tried to first list them by doing :
<% @files = Dir.glob("\\my\directory\on\the network\*" ) %>
<% @files.each do |file| %>
<%= file %>
<% end %>
But I have no output, nothing, not even an error message or something.
If anyone have a clue...
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这样:
Try it like this: