已上传且未转换的文件不会出现在 Google 文档的文档源中
我尝试使用这样的代码从给定目录中检索完整的文件列表
uri = '%s' % fentry.content.src
feed = gd_client.GetDocumentListFeed(uri=uri)
for r in feed.entry:
print r.title.text.decode("utf-8")
它可以工作,只是它只返回“真实”Google 文档文件,而不返回已上传但未转换的文件,例如 *.docx 文件。
有没有办法获得给定目录中文件的完整列表?
I trying to retrieve a complete list of files from a given directory with code like this
uri = '%s' % fentry.content.src
feed = gd_client.GetDocumentListFeed(uri=uri)
for r in feed.entry:
print r.title.text.decode("utf-8")
It works except that it only return "real" Google Documents files and does not return files, which were uploaded but not converted, e.g. *.docx files.
Is there any way to get complete list of files in given directory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我怀疑您使用了错误的 uri。请在此处阅读有关您拥有的不同选项的信息:
http://code.google.com/intl/en-US/apis/documents/docs/3.0/developers_guide_protocol.html#ListDocs
I have the suspicion that you are using a wrong uri. Read here about the different options you have:
http://code.google.com/intl/en-US/apis/documents/docs/3.0/developers_guide_protocol.html#ListDocs