require 'find'module Find def match(*paths) matched = [] find(*paths) { |path| matched << path if yield path } return matched end module_function :matchend# Find the empty files.Find.match('./') { |p| File.lstat(p).size == 0 }