如何使用DocumentApp打开应用程序脚本文件

时间:2018-02-12 10:32:06

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

我试图像Blob一样使用DriveApp创建文件

var newfile = DriveApp.createFile(blob)

我试图用DocumentApp打开这个文件

var doc = DocumentApp.openById(newfile.getId())

但是,对于此文件,DriveApp的ID似乎与DocumentApp不同。我怎样才能获得正确的ID或以任何其他方式使用DocumentApp打开newfile

1 个答案:

答案 0 :(得分:0)

您可以通过DocumentApp的URL打开文件。 File个对象具有方法getUrl,该方法可用于检索URL以在Google App中打开文件;例如

var newfile = DriveApp.createFile(blob)
var doc = DocumentApp.openByUrl(newfile.getUrl())