Skip to content
Snippets Groups Projects
Commit e3de5107 authored by Morris Jobke's avatar Morris Jobke
Browse files

Merge pull request #12090 from AdamWill/google-rename-delete

google: delete original after successful rename
parents 3026cdbc 415411a3
No related branches found
No related tags found
No related merge requests found
...@@ -370,10 +370,22 @@ class Google extends \OC\Files\Storage\Common { ...@@ -370,10 +370,22 @@ class Google extends \OC\Files\Storage\Common {
return false; return false;
} }
} }
// We need to get the object for the existing file with the same
// name (if there is one) before we do the patch. If oldfile
// exists and is a directory we have to delete it before we
// do the rename too.
$oldfile = $this->getDriveFile($path2);
if ($oldfile && $this->is_dir($path2)) {
$this->rmdir($path2);
$oldfile = false;
}
$result = $this->service->files->patch($file->getId(), $file); $result = $this->service->files->patch($file->getId(), $file);
if ($result) { if ($result) {
$this->setDriveFile($path1, false); $this->setDriveFile($path1, false);
$this->setDriveFile($path2, $result); $this->setDriveFile($path2, $result);
if ($oldfile) {
$this->service->files->delete($oldfile->getId());
}
} }
return (bool)$result; return (bool)$result;
} else { } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment