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.
|
How do I get a list of the folders that exist in a certain directory with ruby?
| ||||
|
feedback
|
|
Jordan is close, but Dir.entries doesn't return the full path that File.directory? expects. Try this:
| |||||||
feedback
|
|
In my opinion
This gives you an array of all directorys in that directory as Pathname objects. If you want to have strings
If directory_name was absolute, these strings are absolute too. | |||
|
feedback
|
|
I've found this more useful and easy to use:
it gets all folders in the current directory, excluded To recurse folders simply use | |||||
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 | |||
|
feedback
|
|
You can use
Edit: Updated per ScottD's correction. | ||||
|
feedback
|
| |||
|
feedback
|