vote up 0 vote down star

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

flag

1  
You just asked the same question about python. Why would you write two scripts in two languages to do the same thing unless its homework? – Shane C. Mason Apr 28 at 23:06
because I wanted to compare the answers by the two different communities. – Steven Noble Apr 28 at 23:21
this seems like homework to me too!!! haha – Vanson Samuel Apr 29 at 0:20

3 Answers

vote up 1 vote down check

Dir.glob("**/") will return an array of all paths underneath the current directory. From there you can filter the list and copy a file with File.copy(from, to)

link|flag
vote up 1 vote down

If you mean to find all the immediate subdirectories (just one level below where you are), try this:

Dir.chdir("/some/path/you/want/to/check/below")
subdir_list=Dir["*"].reject{|o| not File.directory?(o)}

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.

link|flag
vote up 1 vote down

Assuming you only wanted the immediate subdirectories, you could use Dir['*/'] (which combines Micheal Sepcot's and glenra's answers).

link|flag

Your Answer

Get an OpenID
or

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