Ian*_*ell 3 google-sheets google-apps-script
我正在尝试编写一个脚本,该脚本从电子表格中获取文件名,在驱动器中搜索该文件,然后返回该文件的 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);
}
Run Code Online (Sandbox Code Playgroud)
我想记录文件名和 Id,但每次运行该函数时都会收到“无效参数:q”
这个修改怎么样?
var searchFor = 'title contains"'+moduleName+'"';
Run Code Online (Sandbox Code Playgroud)
var searchFor = 'title contains "'+moduleName+'"';
Run Code Online (Sandbox Code Playgroud)
title.contains。如果这没有解决您的问题,我深表歉意。
| 归档时间: |
|
| 查看次数: |
886 次 |
| 最近记录: |