在Google App Script中保留URL时覆盖pdf

时间:2017-04-11 19:13:18

标签: google-apps-script

我很新,请原谅我的问题。

我正在尝试使用脚本覆盖pdf文件,但希望保留相同的URL,以便用户可以单击该URL并获得动态更改的pdf(填充名单)。

setContent(content)只允许我将字符串写入文件,而不是替换pdf。

1 个答案:

答案 0 :(得分:2)

您可以在不更改网址的情况下将高级云端硬盘API用于overwrite the content文件。

  var file = DriveApp.getFileById("FILEID");
  Drive.Files.update({
    title: file.getName(), mimeType: file.getMimeType()
  }, file.getId(), blob);