我正在尝试编写一个脚本,该脚本使用电子表格中的文件名,在驱动器中搜索该文件,然后返回该文件的ID。
我认为它不喜欢我的查询字符串,但是我不确定这是怎么回事。
function SearchDriveFiles (){
var moduleName =
SpreadsheetApp.getActiveSpreadsheet().getActiveSheet.getRange("F19").getValue();
var searchFor = 'title contains"'+moduleName+'"';
var names =[];
var fileIds=[];
var files = DriveApp.searchFiles(searchFor);
//iterates through files
while (files.hasNext()) { //This is where the error happens
var file = files.next();
var fileId = file.getId();
fileIds.push(fileId);
var name = file.getName();
names.push(name);}
Logger.log(fileIds);
Logger.log(names);
}
我想记录文件名和ID,但是每次运行该函数时,都会收到“无效参数:q”
答案 0 :(得分:3)
此修改如何?
var searchFor = 'title contains"'+moduleName+'"';
var searchFor = 'title contains "'+moduleName+'"';
title
。contains
的说明。如果这不能解决您的问题,我深表歉意。