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