我的应用程序基于具有已知根文件夹(例如“theFolder”)的树结构。
我能够检索名称为 <theFolder> 的所有文件夹:
gapi.client.request(
{
'path': '/drive/v2/files',
'method': 'GET',
'params': {
q : "title='"+theFolder+"' and mimeType='application/vnd.google-apps.folder'",
fields: "items(description,id,modifiedDate,parents/id,title)"
},
callback: theCallback
});
但是,由于我只想要根文件夹(如果有的话),我徒劳地尝试添加一些标准:
and parents.isRoot
and parents.isRoot=true
and parents/isRoot=true
and (isRoot in parents)
我知道这与在 Drive SDK 上按文件夹获取文件列表有关,更普遍的是:“如何在子字段上设置标准?”