在Apps脚本中打开使用makeCopy创建的Data Studio文件时出错

时间:2018-07-05 14:16:49

标签: google-apps-script google-data-studio

我有一个脚本,该脚本有时会创建Data Studio报表的副本并将其放置在文件夹中。代码是

// Insert copy of the Data Studio template in the folder
var dataStudioTemplate = DriveApp.getFileById(TEMPLATE_DATA_STUDIO_ID);
dataStudioTemplate.makeCopy(formatDataStudioName(name), folder);

一切正常,但是当脚本结束时,我尝试打开新创建的文件副本

enter image description here

该方法适用于其他文件类型,因此我不确定它是否与Data Studio仍然很新而且有点笨拙有关。

我想要的是拥有一个模板Data Studio文件,并能够使用Google Apps脚本创建它的副本。我该怎么办?

0 个答案:

没有答案