class Rails::Paths::Path

def existent

Returns all expanded paths but only if they exist in the filesystem.
def existent
  expanded.select { |f| File.exists?(f) }
end