From: matz@... (Yukihiro Matsumoto) Date: 2002-04-01T12:29:19+09:00 Subject: Re: Recursing thru directories? Hi, In message "Recursing thru directories?" on 02/04/01, Brad Cox writes: |Could someone please provide the ruby idiom for visiting each file in |a directory and its subdirectories? I'm missing something, obvious no |doubt. How about for f in Dir.glob("**/*") .... end Or require 'find' Find.find(path) do |f| ... end matz.