已上传且未转换的文件不会出现在 Google 文档的文档源中

发布于 2024-09-15 12:36:07 字数 290 浏览 4 评论 0原文

我尝试使用这样的代码从给定目录中检索完整的文件列表

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

私藏温柔 2024-09-22 12:36:07

我怀疑您使用了错误的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文