我知道可以使用脚本和驱动器API将excel文件转换为Google表格,但是我正在寻找脚本来转换excel表格并将转换后的文件移动到其他文件夹。
因此,所需步骤如下:
Excel文件被粘贴到正在同步到Google驱动器的本地文件夹中,并且文件大小不超过3mb。当前脚本如下。这是在转换文件,但将它们放置在根文件夹中,并且在脚本再次运行时将复制该转换。
function importXLS(){
var files = DriveApp.getFolderById('1hjvNIPgKhp2ZKIC7K2kxvJjfIeEYw4BP').searchFiles('title != "nothing"');
while(files.hasNext()){
var xFile = files.next();
var name = xFile.getName();
if (name.indexOf('.xlsx')>-1){
var ID = xFile.getId();
var xBlob = xFile.getBlob();
var newFile = { title : name+'_converted',
key : ID
}
file = Drive.Files.insert(newFile, xBlob, {
convert: true
});
}
}
}
答案 0 :(得分:0)
如果我的理解正确,那么此修改如何?在此修改中,我修改了您的脚本。
parents
属性直接将文件创建到特定文件夹。Drive.Files.remove(fileId)
删除文件。function importXLS(){
var folderBId = "###"; // Added // Please set the folder ID of "FolderB".
var files = DriveApp.getFolderById('1hjvNIPgKhp2ZKIC7K2kxvJjfIeEYw4BP').searchFiles('title != "nothing"');
while(files.hasNext()){
var xFile = files.next();
var name = xFile.getName();
if (name.indexOf('.xlsx')>-1){
var ID = xFile.getId();
var xBlob = xFile.getBlob();
var newFile = {
title : name+'_converted',
parents: [{id: folderBId}] // Added
};
file = Drive.Files.insert(newFile, xBlob, {
convert: true
});
// Drive.Files.remove(ID); // Added // If this line is run, the original XLSX file is removed. So please be careful this.
}
}
}
// Drive.Files.remove(ID);
,当您运行此脚本时,请小心。因为原始的XLSX文件在运行脚本时被完全删除。所以我对此发表了评论。首先,请使用示例文件测试脚本。