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 !

link|improve this question
Is using the SMB (windows shares) protocol the only way of accessing the remote directory? – Veger Aug 25 '11 at 13:06
feedback

1 Answer

up vote 1 down vote accepted

Try it this way:

<% @files = Dir.entries("//my/directory/on/the/network") %>
<% @files.each do |file| %>
    <%= file %>
<% end %>
link|improve this answer
Thanks it worked by doing : – Loïc Reperant Aug 25 '11 at 14:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.