Gaufrette\Adapter\Dropbox::rename PHP Méthode

rename() public méthode

public rename ( $sourceKey, $targetKey )
    public function rename($sourceKey, $targetKey)
    {
        try {
            $this->client->move($sourceKey, $targetKey);
        } catch (DropboxNotFoundException $e) {
            return false;
        }
        return true;
    }