在ruby中从一个目录中获取所有文件的最好方法是什么?


当前回答

Dir.glob(File.join('path', '**', '*.rb'), &method(:require))

或者,如果你想要将文件加载到特定的文件夹:

Dir.glob(File.join('path', '{folder1,folder2}', '**', '*.rb'), &method(:require))

解释:

Dir。Glob以block作为参数。

方法(:require)将返回require方法。

&method(:require)将方法转换为块。

其他回答

试试require_all gem:

http://github.com/jarmo/require_all https://rubygems.org/gems/require_all

它让你简单地:

require_all 'path/to/directory'

而不是像在一些答案连接路径,我使用File.expand_path:

Dir[File.expand_path('importers/*.rb', File.dirname(__FILE__))].each do |file|
  require file
end

更新:

而不是使用文件。Dirname你可以这样做:

Dir[File.expand_path('../importers/*.rb', __FILE__)].each do |file|
  require file
end

在哪里. .删除__FILE__的文件名。

我已经晚了几年,但我有点喜欢这个单行解决方案,我用来让rails包括app/workers/concerns中的所有内容:

目录[Rails.root.join *%w(应用程序worker关注点*)]。每个{|f| require f}

如何:

Dir["/path/to/directory/*.rb"].each {|file| require file }
Dir[File.join(__dir__, "/app/**/*.rb")].each do |file|
  require file
end

这将在您的本地机器和不使用相对路径的远程(如Heroku)上递归地工作。