0

我正在使用 gdata python 客户端来上传/下载文件。我无法弄清楚如何上传零大小的文件。这就是我所拥有的。

#To update
file = gdata.data.MediaSource()
r = client.GetResourceById(resid)
client.UpdateResource(r, media=file, new_revision=True)

#To create a new file
file = gdata.data.MediaSource()
doc = gdata.docs.data.Resource(type='file', title="Title")
r = client.CreateResource(doc, create_uri=uri, media=file)

我尝试删除 media=None 并且也不包括在选项中。我怎样才能使它适用于零大小的文件?

4

1 回答 1

0

您可以将片段用于files.insertDrive API 的方法,而无需指定 amedia_body来创建空文件:

https://developers.google.com/drive/v2/reference/files/insert

于 2012-10-18T04:07:59.330 回答