method
file_exist?

file_exist?(path)
private
Hide source
# File railties/lib/rails/rack/static.rb, line 35 def file_exist?(path) full_path = File.join(@file_server.root, ::Rack::Utils.unescape(path)) File.file?(full_path) && File.readable?(full_path) end