我正在制作一个我需要每周重置的电子表格,我正在尝试使用PyDrive API制作文件的副本,这与下面的代码完美配合。
我的问题是我无法指定要将副本保存到哪个文件夹。我希望有一个名为“archive”的文件夹,其中包含我的所有备份。这是可能的,使用PyDrive,如果是这样,怎么样?谢谢!
## Create a new Document in Google Drive
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
gauth = GoogleAuth()
gauth.LocalWebserverAuth()
drive = GoogleDrive(gauth)
folder = "########"
title = "Copy of my other file"
file = "############"
drive.auth.service.files().copy(fileId=file,
body={"parents": [{"kind": "drive#fileLink",
"id": folder}], 'title': title}).execute()
答案 0 :(得分:0)
感谢@Rawing的评论我明白了。它在“文件夹”变量
中指定