我需要获取根文件夹 id 并过滤以根文件夹为父文件夹的文件夹。使用 Nodejs 和 google drive API v3 。这是我的代码以及如何更改此代码以获取根文件夹 ID?
const service = google.drive('v3');
service.files.list({
auth: client2,
fields: 'nextPageToken, files(id, name, webContentLink, webViewLink, mimeType, parents)'
}, (err, res) => {
if (err) {
console.error('The API returned an error.');
throw err;
}
const files = res.data.files;
if (files.length === 0) {
console.log('No files found.');
} else {
console.log('Files Found!');
for (const file of files) {
console.log(`${file.name} (${file.id})`);
}