是否可以将 Google 文档复制到 Google AppS 脚本?

Is it possible to copy a Google Document to Google AppScript?

下一行创建一个新的 Google 文档:

DocumentApp.create('Hello, world!');

是否可以使用 Google AppScript 创建现有 Google 文档的副本?

您可以使用 DriveApp:

var docFile = DriveApp.getFileById('###document ID here###');
docFile.makeCopy();