Flowdock
method

exist?

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: DiskService
exist?(key) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activestorage/lib/active_storage/service/disk_service.rb, line 67
    def exist?(key)
      instrument :exist, key: key do |payload|
        answer = File.exist? path_for(key)
        payload[:exist] = answer
        answer
      end
    end
Register or log in to add new notes.