Using Google Drive API with Java, how to list only files in the Drive Section/Folder(使用带有 Java 的 Google Drive API,如何仅列出 Drive Section/Folder 中的文件)
问题描述
我正在尝试获取 Google Drive 特定部分(驱动器部分)中的所有文件.
I am trying to get all files that are in a specific section of Google Drive (The Drive Section).
这些是我正在寻找的文件:
Those are the files I am looking for:
您可以看到一个名为 Projet 3 的文件夹和一个名为 Processus TP2 questions 的文件.在文件夹中我只有一个文件.
You can see a folder named Projet 3 and a file named Processus TP2 questions. In the folder I only have one file.
但是当我尝试列出所有文件时,我得到了数千个文件.如果我使用 Google Drive 顶部的搜索栏搜索它们,它会找到它们,但我不知道它们在哪里(可能是 Gmail 附件?).
But when I try to list all the files, I get thousands of files. If I search for them using the search bar on top of Google Drive, it finds them, but I have no idea where they are (maybe Gmail attachement?).
这是我的搜索查询:
FileList result = service.files().list()
.setQ("mimeType != 'application/vnd.google-apps.folder'
and trashed = false")
.setSpaces("drive")
.setFields("nextPageToken, files(id, name, parents)")
.setPageToken(pageToken)
.execute();
如何仅列出我可以在网络 UI 上的驱动器部分/文件夹中看到的文件?
How can I list only the files I can see in my Drive Section/Folder on the web UI?
非常感谢.
推荐答案
在查询中使用parents"属性,如下所示:
Use "parents" property in your query, like this:
FileList result = service.files().list()
.setQ("'root' in parents and mimeType != 'application/vnd.google-apps.folder' and trashed = false")
.setSpaces("drive")
.setFields("nextPageToken, files(id, name, parents)")
.setPageToken(pageToken)
.execute();
如果您想列出特定文件夹的内容而不是根目录 - 在查询中使用该文件夹的 ID 而不是根目录".
If you want to list the contents of a specific folder rather than root - use that folder's id instead of 'root' in the query.
这篇关于使用带有 Java 的 Google Drive API,如何仅列出 Drive Section/Folder 中的文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用带有 Java 的 Google Drive API,如何仅列出 Driv
基础教程推荐
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
