dir.each { |filename| block } â dir
dir.each â an_enumerator
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
Please login to continue.