How do I get a list of the folders that exist in a certain directory with ruby?

Dir.entries() looks close but I don't know how to limit to folders only.

link|improve this question

feedback

6 Answers

up vote 2 down vote accepted

Jordan is close, but Dir.entries doesn't return the full path that File.directory? expects. Try this:

 Dir.entries('/your_dir').select {|entry| File.directory? File.join('/your_dir',entry) and !(entry =='.' || entry == '..') }
link|improve this answer
1  
Note that this will get you all directories, including hidden ones as well as '.' (current directory) and '..' (parent of current directory). In most cases, you want to remove at least those two. – Telemachus Dec 14 '09 at 12:50
Good point. Corrected for . and .. – ScottD Dec 14 '09 at 15:08
feedback

In my opinion Pathname is much better suited for filenames than plain strings.

require "pathname"
Pathname.new(directory_name).children.select { |c| c.directory? }

This gives you an array of all directorys in that directory as Pathname objects.

If you want to have strings

Pathname.new(directory_name).children.select { |c| c.directory? }.collect { |p| p.to_s }

If directory_name was absolute, these strings are absolute too.

link|improve this answer
feedback

I've found this more useful and easy to use:

Dir.glob('*').select {|f| File.directory? f}

it gets all folders in the current directory, excluded . and ...

To recurse folders simply use ** in place of *.

link|improve this answer
1  
To recurse folders, you need to use **/* in place of *. – mkmurray Feb 13 at 19:56
feedback

I think You can test each file if it is directory with FileTest.directory? (file_name). See documentation of FileTest for more info: http://ruby-doc.org/core/classes/FileTest.html

link|improve this answer
feedback

You can use File.directory? from the FileTest module to find out if a file is a directory. Combining this with Dir.entries makes for a nice one(ish)-liner:

directory = 'some_dir'
Dir.entries(directory).select { |file| File.directory? File.join(directory, file}

Edit: Updated per ScottD's correction.

link|improve this answer
feedback
directory = 'Folder'
puts Dir.entries(directory).select { |file| File.directory? File.join(directory, file)}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.