prune under file basename : Find « File Directory « Ruby






prune under file basename


require 'find'
Find.find('./') do |path|
  if File.basename(path) =~ /file2$/
    puts "PRUNED #{path}"
    Find.prune
  end
  puts path
end

 








Related examples in the same category

1.Find a path
2.Find.find by block
3.Finding the Files
4.Find the MP3s.
5.Find the README files.
6.File a file starting with certain string
7.Finds files that were probably left behind by emacs sessions.
8.Finds all files that are larger than a certain threshold.
9.Finds all files modified more recently than a certain number of seconds ago.
10.Finds all files that haven't been accessed since they were last modified.