J
Jon Hawkins
Been trying to get a full list of file sizes out of a directory
structure, starting from '/' ... The code below wont work because the
method doesnt accept wildcards, and instead gives the size of the
directory block rather than the file sizes within it.
Dir.chdir('/')
File.size("**/**").each {|x| puts x}
and the problem with File.size("/.") is that it list the size of the
directory
block size '4096'
i was thinking that somehow i could run a directory surf with the
Find.find method
--- Find.find("/", "./") {|path| puts path} ---
and shove that data into an array, then run File.size on each array item
with a range... anyone have any ideas?
-Thanks
structure, starting from '/' ... The code below wont work because the
method doesnt accept wildcards, and instead gives the size of the
directory block rather than the file sizes within it.
Dir.chdir('/')
File.size("**/**").each {|x| puts x}
and the problem with File.size("/.") is that it list the size of the
directory
block size '4096'
i was thinking that somehow i could run a directory surf with the
Find.find method
--- Find.find("/", "./") {|path| puts path} ---
and shove that data into an array, then run File.size on each array item
with a range... anyone have any ideas?
-Thanks