Drive.Files.Copy和“父母”无法正常工作

时间:2018-09-09 11:49:47

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

我正在尝试将Team Drive中的文件复制到新的文件夹位置,也复制到Team Drive中。我在代码的最后一行收到“找不到文件”错误。已使用DriveApp.getFileByID并通过Google API Try-It中的测试来检查newFileID。

我认为“父母”作品的格式不正确。当我尝试Google API Try-It时,文件被复制到正确的文件夹中。好极了!那么Google脚本代码有什么问题呢?

https://developers.google.com/drive/api/v3/reference/files/copy#try-it

Google脚本代码(不起作用):

function test() {

  // find Teacher's Learner Guides folder
  var destinationFolderId = "1qQJhDMlHZixBO9KZkkoSNYdMuqg0vBPU";

  var newFile = {
    "name": "Learner Guide - test",
    "description": "New student learner guide",
    "parents": [destinationFolderId]
  };

  // create duplicate document
  var newFileID = "1g6cjUn1BWVqRAIhrOyXXsTwTmPZ4QW6qGhUAeTHJSUs";
  var newDoc = Drive.Files.copy(newFile, newFileID);

}

Google API Try-It代码有效。这是javascript(有效):

return gapi.client.drive.files.copy({
      "fileId": "1g6cjUn1BWVqRAIhrOyXXsTwTmPZ4QW6qGhUAeTHJSUs",
      "supportsTeamDrives": true,
      "resource": {
        "parents": [
          "1qQJhDMlHZixBO9KZkkoSNYdMuqg0vBPU"
        ],
        "name": "Learner Test2"
      }
    })

在Google脚本代码中使用Drive.Files.Copy来将复制的文件放置到其他文件夹中的有效和/或正确的方法是什么?

2 个答案:

答案 0 :(得分:1)

与请求关联的parents元数据需要Drive API v2的ParentReference资源,该资源至少是具有id属性和关联的fileId的对象,例如{id: "some id"}

由于您使用的是Team Drive,因此必须告诉Google您(即您的代码)知道如何使用supportsTeamDrives可选参数在常规驱动器和Team Drive之间handle the associated differences

注意:

  

如果发出请求的用户不是Team Drive的成员,并且没有访问父级的权限,则父级不会出现在父级列表中。此外,除了顶级文件夹外,如果文件位于Team Drive中,则父列表必须仅包含一个项目。

假设代码运行程序符合条件,将给定文件复制到给定Team Drive文件夹的最简单代码是:

function duplicate_(newName, sourceId, targetFolderId) {
  if (!newName || !sourceId || !targetFolderId)
    return;
  const options = {
    fields: "id,title,parents", // properties sent back to you from the API
    supportsTeamDrives: true, // needed for Team Drives
  };
  const metadata = {
    title: newName,
    // Team Drives files & folders can have only 1 parent
    parents: [ {id: targetFolderId} ],
    // other possible fields you can supply: 
    // https://developers.google.com/drive/api/v2/reference/files/copy#request-body
  };

  return Drive.Files.copy(metadata, sourceId, options);
}

其他阅读内容:

答案 1 :(得分:0)

这是在Team Drive中复制文件的解决方案。 @tehhowch有一个关于需要可选参数的重要内容(对于复制API v2,您需要使用所有三个参数)。然后,“ parents”参数需要File对象,而不是字符串。下面的代码通过复制文件并将其移至另一个Team Drives文件夹来工作。

function test() {

  // find Teacher's Learner Guides folder
  var destFolderId = "1qQJhDMlHZixBO9KZkkoSNYdMuqg0vBPU";
  var originalDocID = "1g6cjUn1BWVqRAIhrOyXXsTwTmPZ4QW6qGhUAeTHJSUs";
  var destFolder = Drive.Files.get(destFolderId, {"supportsTeamDrives": true});

  var newFile = {
    "fileId": originalDocID,
    "parents": [
      destFolder // this needed to be an object, not a string
    ]
  };
  var args = {
    "resource": {
      "parents": [
        destFolder // this needed to be an object, not a string
      ],
      "title": "new name of document here"
    },
    "supportsTeamDrives": true
  };

  // create duplicate Learner Guide Template document
  var newTargetDoc = Drive.Files.copy(newFile, originalDocID, args);
}