method

directory_exist?

directory_exist?(path)
private

No documentation available.

# File railties/lib/rails/rack/static.rb, line 40
        def directory_exist?(path)
          full_path = File.join(@file_server.root, ::Rack::Utils.unescape(path))
          File.directory?(full_path) && File.readable?(full_path)
        end