我有一个运行良好的Google Apps脚本:
function myFunction(e) {
var name = e.values[1];
var kantoor = e.values[2];
var doc = DocumentApp.create('Sleuteloverdracht ' + name);
var body = doc.getBody();
body.appendParagraph('Sleuteloverdracht ' + name);
body.appendParagraph('Uw naam is '+ name + '\n' + 'U heeft de sleutel van kantoor '+ kantoor);
doc.saveAndClose();
}
它使用包含来自表单的响应的电子表格中的内容制作一个Google文档。发送表单时,它与触发器一起工作。
但是问题在于Google Doc文件放置在“我的云端硬盘”中,而不是与表单和电子表格位于同一文件夹中。
编辑:此Create a Google Doc file directly in a Google Drive folder主题中的问题不相同。我已经有一个文档,不想创建一个。现有文档仅需要移动到另一个文件。有关我使用的解决方案,请参见下面的答案。
答案 0 :(得分:0)
这是在特定文件夹中创建新的Google文档的方法。创建文档后,必须设置mime类型。
请注意,此代码不会 不 首先创建一个Doc文件,将其移动,然后在根驱动器中删除该文件。有另一个流行的答案可以做到这一点。此代码直接在文件夹中创建一个新的Google Doc类型文件。
您将需要使用Advanced Drive API。必须在两个地方启用它。
function myFunction(e) {
var doc,fileResource,folder,ID_of_newFile,multipleFolders,newFile,
newDocName,rng,sh,ss,ssFile,ssID;
var name = e.values[1];
var kantoor = e.values[2];
newDocName = 'Sleuteloverdracht ' + name;//Set the name of the new file
rng = e.range;//Get range in the spreadsheet that received the data
sh = rng.getSheet();//Get sheet tab
ss = sh.getParent();//Get spreadsheet
ssID = ss.getSheetId();//Get file ID of spreadsheet - Integer
ssFile = DriveApp.getFileById(ssID);//Get the spreadsheet file in order to get the
//folder to put the new file in
multipleFolders = ssFile.getParents();//Get all parent folders of the spreadsheet file
folder = multipleFolders.next();//Get the folder of the spreadsheet
fileResource = {
'title': newDocName,
"parents": [{'id':folder.getId()}], //<--By setting this parent ID to the
//folder's ID, it creates this file in the correct folder
'mimeType': 'application/vnd.google-apps.document'
};
newFile = Drive.Files.insert(fileResource);//Create the new document file
// directly into the same folder as the spreadsheet
ID_of_newFile = newFile.getId();
//Logger.log(ID_of_newFile)
doc = DocumentApp.openById(newFile.getId());//Open the new file as a Google document
var body = doc.getBody();
body.appendParagraph('Sleuteloverdracht ' + name);
body.appendParagraph('Uw naam is '+ name + '\n' +
'U heeft de sleutel van kantoor '+ kantoor);
doc.saveAndClose();
}
答案 1 :(得分:0)
我自己找到了答案。
我使用了此脚本(它是我在网上找到的两个脚本的组合)来查找具有正确名称的文件并将其删除到目标文件夹中。之后,它将删除根目录中的文件。它与触发器配合使用,该功能每分钟都会触发一次,因为在我的情况下,创建文档的表单(需要移至目标文件夹)每小时被使用多次(创建了多个文档)。
function SearchFiles() {
var searchFor ='title contains "NAME/LETTER"';
var names =[];
var fileIds=[];
var files = DriveApp.searchFiles(searchFor);
while (files.hasNext()) {
var file = files.next();
var fileId = file.getId();
fileIds.push(fileId);
var name = file.getName();
names.push(name);
}
var docFile = DriveApp.getFileById(fileId);
DriveApp.getFolderById('FOLDER_ID_DESTINATION_FOLDER').addFile(docFile);
DriveApp.getRootFolder().removeFile(docFile);
}