Sha256: 13c6a4a760a19ea8f37e460b6cda09f9a3273fc45ead64a1da2406e4957ba915
Contents?: true
Size: 780 Bytes
Versions: 5
Compression:
Stored size: 780 Bytes
Contents
class Dir # Recursively scan a directory and pass each file # to the given block. # # CREDIT: George Moschovitis # # TODO: If fully compatible, reimplement as alias of Find.find, # or just copy and paste Find.find code here if it looks more robust. # def self.recurse(path='.', &block) list = [] stoplist = ['.', '..'] Dir.foreach(path) do |f| next if stoplist.include?(f) filename = (path == '.' ? f : path + '/' + f) list << filename block.call(filename) if block if FileTest.directory?(filename) and not FileTest.symlink?(filename) list.concat( Dir.recurse(filename, &block) ) end end list end # Same as Dir#recurse. def self.ls_r(path='.', &block) recurse(path, &block) end end
Version data entries
5 entries across 5 versions & 1 rubygems