在Google云端硬盘REST API中查找文件的路径

时间:2016-06-14 08:45:35

标签: google-drive-api

我想列出子文件夹中的所有文件。我不了解API参考。 例如路径 我在Google云端硬盘中的路径是CR / CA / UP /文件。 我在Google云端硬盘中的路径是CR / NA / UP /文件。 我在Google云端硬盘中的路径是CR / DD / UP /文件。

对于Google文档提供的字符串q list,我该如何传递?

这是我正在使用的Q.请告知我对Q的错误

string Q = "'CR' IN parents and title = 'UP' and trashed = 'false' and mimeType = 'application/vnd.google-apps.folder'";
IList<File> _Files = GoogleDriveHelper.GetFiles(service, Q);

当我使用它时它是工作但我不知道参考哪个父文件夹CA,NA或DD

string Q = "title = 'UP' and trashed = 'false' and mimeType = 'application/vnd.google-apps.folder'";

1 个答案:

答案 0 :(得分:0)

To list a folders contents,即您需要使用此HTTP请求的孩子

GET https://www.googleapis.com/drive/v2/files/folderId/children

要列出根文件夹的所有子项,请使用别名root作为folderId值。

q参数是一种组合一个或多个搜索字词的搜索查询,用于搜索文件夹中的特定文件。