Merge pull request #23845 from owncloud/smb-rename
implement specific rename handling for SMB
This commit is contained in:
commit
46fe2ddf2e
|
@ -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
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue