Google Apps脚本:如何将文件从root保存到特定文件夹?

时间:2017-05-26 17:51:11

标签: google-apps-script google-drive-api google-sheets-api

我开始学习谷歌应用程序脚本并且有点痛苦,:S。

所以,当我运行这个函数时:

function importXLSX(){
  var files = DriveApp.getFolderById('0B5HXuvZIdqQ3bWlKNXFXZzhIcmc').searchFiles('title contains ".xlsx"');
    while(files.hasNext()){
      var xFile = files.next();
      var name = xFile.getName();
         if (name.indexOf('.xlsx')){ 
            var ID = xFile.getId();
            var xBlob = xFile.getBlob();
            var newFile = { title : name+'_converted',
                 key : ID,
            }
            file = Drive.Files.insert(newFile, xBlob, {
            convert: true
            });
         }
       }
    }

文件转换是在Drive的root中设置的,但我喜欢

当我运行代码时,文件保存在根文件夹中,但我希望它们保存到特定文件夹,如“转换”,所以如果有人知道如何解决它,我将非常感激!

这是关于该功能的参考链接:Convert all xls files available in a folder into "Google Doc Spreadsheets"?

谢谢!

2 个答案:

答案 0 :(得分:3)

由于您使用的是Drive API,因此您可以直接为特定文件夹创建文件。

我将parents: [{"id": "### Folder ID ###"}]添加到newFile。请将### Folder ID ###更改为特定文件夹并尝试此操作。

修改过的脚本:

function importXLSX(){
  var files = DriveApp.getFolderById('0B5HXuvZIdqQ3bWlKNXFXZzhIcmc').searchFiles('title contains ".xlsx"');
  while(files.hasNext()) {
    var xFile = files.next();
    var name = xFile.getName();
    if (name.indexOf('.xlsx')) { 
      var ID = xFile.getId();
      var xBlob = xFile.getBlob();
      var newFile = {
        title : name+'_converted',
        key : ID,
        parents: [{"id": "### Folder ID ###"}]
      }
      file = Drive.Files.insert(newFile, xBlob, {convert: true});
    }
  }
}

如果要从文件夹名称中检索文件夹ID。请使用以下脚本。

var folderId = DriveApp.getFoldersByName("### Folder name ###").next().getId();

如果我误解了你的问题,我很抱歉。

答案 1 :(得分:0)

首先,您需要获取文件夹ID(右键单击Google云端硬盘中的文件夹,然后点击“获取可共享链接”查看其共享选项,共享网址末尾的字符串是文件夹的ID)和然后为您转换的每个文件将文件添加到目标文件夹。

var folder = DriveApp.getFolderById([folder-id]);

while(files.hasNext()) {
    var file = files.next();
    ...
    ...
    folder.addFile(file);
}

这应该可以解决问题!