Google Docs python gdata 2.0.16将文件上传到现有集合

时间:2012-04-09 17:40:10

标签: python collections upload gdata google-docs

我设法创建了一个简单的应用程序,删除(绕过回收站)我想要的任何文件。它还可以上传文件。我遇到的问题是我无法指定新文件应该上传到哪个集合。

def UploadFile(folder, filename, local_file, client):
    print "Upload Resource"
    doc = gdata.docs.data.Resource(type='document', title=filename)
    path = _GetDataFilePath(local_file)
    media = gdata.data.MediaSource()
    media.SetFileHandle(path, 'application/octet-stream')
    create_uri = gdata.docs.client.RESOURCE_UPLOAD_URI + '?convert=false'
    collection_resource = folder
    upload_doc = client.CreateResource(doc, create_uri=create_uri, collection=collection_resource, media=media)
    print 'Created, and uploaded:', upload_doc.title, doc.resource_id

根据我的理解,函数CreateResources需要一个表示集合的资源对象。我如何获得这个对象?变量文件夹当前只是一个字符串,上面写着'daily',它是集合的名称,我需要用集合资源替换这个变量。

1 个答案:

答案 0 :(得分:3)

从各种来源,片段和一般的东西到处都是我设法解决的问题。你需要将一个uri传递给FindAllResources函数(我在gdata的示例代码中没有提到这个函数)。

我已经更详细地写了我如何设法上传,删除(绕过垃圾箱),搜索和移动文件到收藏品

here