each

dir.each { |filename| block } â dir
dir.each â an_enumerator
Instance Public methods

Calls the block once for each entry in this directory, passing the filename of each entry as a parameter to the block.

If no block is given, an enumerator is returned instead.

d = Dir.new("testdir")
d.each  {|x| puts "Got #{x}" }

produces:

Got .
Got ..
Got config.h
Got main.rb
doc_ruby_on_rails
2015-04-03 12:25:51
Comments
Leave a Comment

Please login to continue.