# File lib/merb-core/rack/application.rb, line 68
      def file_exist?(path)
        full_path = ::File.join(@static_server.root, ::Merb::Request.unescape(path))
        ::File.file?(full_path) && ::File.readable?(full_path)
      end