Browse Source

Merge pull request #23845 from owncloud/smb-rename

implement specific rename handling for SMB
pull/333/head
Vincent Petry 10 years ago
parent
commit
46fe2ddf2e
  1. 20
      apps/files_external/lib/Lib/Storage/SMB.php

20
apps/files_external/lib/Lib/Storage/SMB.php

@ -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…
Cancel
Save