Find the MP3s. : Find « File Directory « Ruby

Home
Ruby
1.ActiveRecord
2.Array
3.CGI
4.Class
5.Collections
6.Database
7.Date
8.Design Patterns
9.Development
10.File Directory
11.GUI
12.Hash
13.Language Basics
14.Method
15.Network
16.Number
17.Rails
18.Range
19.Reflection
20.Statement
21.String
22.Threads
23.Time
24.Tk
25.Unit Test
26.Windows Platform
27.XML
Ruby » File Directory » Find 




Find the MP3s.


require 'find'
module Find
  def match(*paths)
    matched = []
    find(*paths) { |path| matched << path if yield path }
    return matched
  end
  module_function :match
end


Find.match('./') |p| ext = p[-4...p.size]; ext && ext.downcase == '.mp3' }
# => ["./Music/The Snails - Red Rocket.mp3",
#     "./Music/The Snails - Moonfall.mp3",
#     "./Music/cancelled_download.MP3"]

 














Related examples in the same category
1.Find a path
2.Find.find by block
3.prune under file basename
4.Finding the Files
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.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.