I'm trying to write a simple ruby script that will copy a index.tpl to index.html in all of the subdirectories (with a few exceptions). But I'm getting bogged down by trying to get the list of subdirectories
|
|
|||||||||
|
|
|
|
||
|
|
|
|
If you mean to find all the immediate subdirectories (just one level below where you are), try this:
That is: change directory someplace, construct an array of files found there, reject those array elements that aren't directories, and return the resulting culled arrray. |
||
|
|
|
|
Assuming you only wanted the immediate subdirectories, you could use |
||
|
|
