Loïc Reperant
Loïc Reperant

Reputation: 105

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 !

Upvotes: 1

Views: 967

Answers (1)

Geo
Geo

Reputation: 96897

Try it like this:

<%- @files = Dir.entries("//my/directory/on/the/network") %>
<%- @files.each do |file| %>
    <%= file %>
<% end %>

Upvotes: 1

Related Questions