Gaufrette\Adapter\Dropbox::exists PHP Метод

exists() публичный Метод

public exists ( $key )
    public function exists($key)
    {
        try {
            $this->getDropboxMetadata($key);
            return true;
        } catch (Exception\FileNotFound $e) {
            return false;
        }
    }