Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement mv method in GDriveFileSystem #217

Merged
merged 18 commits into from
Sep 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions pydrive2/fs/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,37 @@ def cp_file(self, lpath, rpath, **kwargs):
buffer = io.BytesIO(stream.read())
self.upload_fobj(buffer, rpath)

@_gdrive_retry
def mv(self, path1, path2, maxdepth=None, **kwargs):

if maxdepth is not None:
raise NotImplementedError("Max depth move is not supported")

src_name = posixpath.basename(path1)

src_parent = self._parent(path1)

if self.exists(path2):
dst_name = src_name
dst_parent = path2
else:
dst_name = posixpath.basename(path2)
dst_parent = self._parent(path2)

file1_id = self._get_item_id(path1)

file1 = self.client.CreateFile({"id": file1_id})

if src_name != dst_name:
file1["title"] = dst_name

if src_parent != dst_parent:
file2_parent_id = self._get_item_id(dst_parent)
file1["parents"] = [{"id": file2_parent_id}]

# TODO need to invalidate the cache for the old path, see #232
file1.Upload()

def get_file(self, lpath, rpath, callback=None, block_size=None, **kwargs):
item_id = self._get_item_id(lpath)
return self._gdrive_get_file(
Expand Down