using ruby how to get number of files in a given Directory,the file count should include count from recursive directories.
Eg: folder1(2 files) -----> folder2(4 files) and folder2 is inside folder1. total count for above case should be 6 files.
is there any function in ruby which fetch me this count.
You could also go super bare bones and do a system command:
A slight modification and a comment
works for me in Ruby 1.9.3, and is shorter.
A caveat, at least on my Windows 7 box, is that
Dir['somedir/**/*']
doesn't work. I have to use