summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/files_external/lib/Lib/Storage/SMB.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/files_external/lib/Lib/Storage/SMB.php b/apps/files_external/lib/Lib/Storage/SMB.php
index c08b730b02e..9f74aa881e0 100644
--- a/apps/files_external/lib/Lib/Storage/SMB.php
+++ b/apps/files_external/lib/Lib/Storage/SMB.php
@@ -181,6 +181,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
*
* @param string $path