I'm running Ruby 1.9.2p290 and Rails 3.1.0.rc5. When I run this regex it matches everything:
files = Dir.glob("#{File.dirname(video.path)}/*")
files.each do |f|
File.delete(f) unless File.extname(f) =~ /[.flv|.gif]/
end
Am I missing something?
|
To ensure that only the exact extension is matched, use
Explanation:
|
|||
|
|
|
I think you want to match either extension ".flv" or ".gif". Therefore you can use the following regex:
Your regex defines a matching character set ( |
||||
|
|
/[.flv|.gif]/means "one character out of.,f,l,v,|,gori". – Tim Pietzcker Aug 7 '11 at 7:41