existing()
Return a new file list that only contains file names from the current file list that exist on the file system.
# File lib/rake/file_list.rb, line 312 def existing select { |fn| File.exist?(fn) } end