From: Ben Johnson Date: 2008-09-01T02:05:30+09:00 Subject: Re: Difference between dir/**/* and dir/*? Sebastian Hungerecker wrote: > Ben Johnson wrote: >> dir/**/* >> >> dir/* >> >> What's the difference? > > dir/* gives you all (non-hidden) files in the directory dir. > dir/**/* gives you all (non-hidden) files in the director dir and its > subdirectories. > > HTH, > Sebastian Thanks for your help, what about its sub-sub directories? Is dir/**/* recursive? -- Posted via http://www.ruby-forum.com/.