Gaufrette\Adapter\Sftp::exists PHP Method

exists() public method

public exists ( $key )
    public function exists($key)
    {
        $this->initialize();
        $url = $this->sftp->getUrl($this->computePath($key));
        clearstatcache();
        return file_exists($url);
    }