【发布时间】:2016-07-26 08:21:18
【问题描述】:
我想列出一个子文件夹中的所有文件。我不了解 API 参考。 例如路径 我在 Google Drive 中的路径是 CR/CA/UP/files。 我在 Google Drive 中的路径是 CR/NA/UP/files。 我在 Google Drive 中的路径是 CR/DD/UP/files。
对于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'";
【问题讨论】:
标签: google-drive-api