gpt4 book ai didi

python - 通过 PyDrive 删除文件

转载 作者:太空宇宙 更新时间:2023-11-04 01:16:19 25 4
gpt4 key购买 nike

我正在使用 PyDrive ( http://pythonhosted.org/PyDrive/ ) 来简化对 Google 云端硬盘的 API 访问,但在尝试从云端硬盘中删除现有文件时遇到了障碍。我从文档或源代码的简要浏览中看不到明确的方法。有人能指出我正确的方向吗?干杯。

最佳答案

更新:此功能已合并。您现在可以调用 fi.Delete()fi.Trash()。参见 the docs了解更多详情。


在PyDrive文件夹的files.py中添加5行代码实现删除功能。

您可以从以下位置下载更新的 files.py:

https://github.com/ytakefuji/PyDrive/blob/master/files.py

必须编译生成files.pyc

$ cat help.py
import py_compile
py_compile.compile("files.py")
$ python help.py

示例:通过 oauth2 删除 Google Drive 上的文件:

https://github.com/ytakefuji/PyDrive/blob/master/oauth2_delete.py

编辑:有问题的行是(添加到 GoogleDriveFile 类):

def DeleteFile(self,file_id):
try:
self.auth.service.files().delete(fileId=file_id).execute()
except errors.HttpError, error:
print 'An error occurred: %s' % error

可以找到此功能的文档 here .

关于python - 通过 PyDrive 删除文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24433934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com