Loop through files in a directory

B

Ben Johnson

I know this is a nub question, but the documentation on ruby is
terrible.

How do I loop through all of the files in a directory?

Thanks for your help.
 
J

Jano Svitok

I know this is a nub question, but the documentation on ruby is
terrible.

How do I loop through all of the files in a directory?

Thanks for your help.

Have a look at Find.find and Dir.each.
 
A

ara.t.howard

I know this is a nub question, but the documentation on ruby is
terrible.

How do I loop through all of the files in a directory?

Thanks for your help.


harp:~ > ls dir
a b c


harp:~ > cat a.rb
class Dir
def self.ls dir, glob = File.join('**', '**'), &block
ret = [] unless block
Dir.glob(File.join(dir, glob)) do |entry|
block ? block.call(entry) : ret.push(entry)
end
ret
end
end

Dir.ls 'dir' do |entry|
puts entry
end

entries = Dir.ls 'dir'
p entries


harp:~ > ruby a.rb
dir/a
dir/b
dir/c
["dir/a", "dir/b", "dir/c"]

-a
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,042
Latest member
icassiem

Latest Threads

Top