Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails.root filepath wildcards

Here's my code in a rake task to open a file:

  File.open(Rails.root.join("public/system/xmls/**/original/*.csv"),"r") do |file| 
  #etc

but it's not matching any file (there are three possible matches). The first ** is a folder with a 2 digit name. Where am I going wrong?

like image 417
snowangel Avatar asked Oct 10 '22 15:10

snowangel


1 Answers

The join method doesn't usually expand * and ** but puts them in as literals. Maybe this is the problem. What you want might be more like this:

Dir.glob(Rails.root.join("public/system/xmls/**/original/*.csv")).each do |path|
  File.open(path) do |file|
    # ...
  end
end

Open each file individually and you should be fine.

like image 158
tadman Avatar answered Oct 19 '22 06:10

tadman