我试图像Blob一样使用DriveApp创建文件
var newfile = DriveApp.createFile(blob)
我试图用DocumentApp打开这个文件
var doc = DocumentApp.openById(newfile.getId())
但是,对于此文件,DriveApp的ID似乎与DocumentApp不同。我怎样才能获得正确的ID或以任何其他方式使用DocumentApp打开newfile
?
答案 0 :(得分:0)
您可以通过DocumentApp的URL打开文件。 File
个对象具有方法getUrl,该方法可用于检索URL以在Google App中打开文件;例如
var newfile = DriveApp.createFile(blob)
var doc = DocumentApp.openByUrl(newfile.getUrl())