Listing files from the network in Rails
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 !
Try it like this:
<%- @files = Dir.entries("//my/directory/on/the/network") %>
<%- @files.each do |file| %>
<%= file %>
<% end %>
精彩评论