Merge pull request #24 from nextcloud/downstream_smb-rename

implement specific rename handling for SMB
This commit is contained in:
Lukas Reschke 2016-06-08 14:19:26 +02:00
commit 80f3a3f4cb
1 changed files with 20 additions and 0 deletions

View File

@ -180,6 +180,26 @@ class SMB extends \OC\Files\Storage\Common {
}
}
/**
* @param string $path1 the old name
* @param string $path2 the new name
* @return bool
*/
public function rename($path1, $path2) {
try {
$this->remove($path2);
$path1 = $this->buildPath($path1);
$path2 = $this->buildPath($path2);
return $this->share->rename($path1, $path2);
} catch (NotFoundException $e) {
return false;
} catch (ForbiddenException $e) {
return false;
} catch (ConnectException $e) {
throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
}
}
/**
* check if a file or folder has been updated since $time
*