gpt4 book ai didi

google-apps-script - 如何使用 Apps 脚本将 .docx 文件转换为 Google 文档?

转载 作者:行者123 更新时间:2023-12-02 19:44:36 25 4
gpt4 key购买 nike

有没有人有将存储在 Google Drive 中的一批 .docx 文件转换为 Google Docs 格式的经验?

我读了the solution 3 年前由 Youssef 发布,但它不再起作用了。

当我尝试复制解决方案时,收到此错误消息:

We're sorry, a server error occurred. Please wait a bit and try again.

var docx = DriveApp.getFileById("###");

var newDoc = Drive.newFile();
var blob =docx.getBlob();
var file=Drive.Files.insert(newDoc,blob,{convert:true});

执行在 docx.getBlob() 处停止。

最佳答案

此功能使用一些高级 Drive API,因此需要您先从脚本编辑器启用它们,运行脚本之前。为此,请转到:

Resources > Advanced Google Services...> 一直向下滚动到 Drive API> 将关闭按钮切换为

Advanced resources

这是最终的脚本 -

function myFunction() {
var docx = DriveApp.getFilesByName('Dummy.docx').next();
var newDoc = Drive.newFile();
var blob =docx.getBlob();
var file=Drive.Files.insert(newDoc,blob,{convert:true});
DocumentApp.openById(file.id).setName(docx.getName());
}

希望这对您有所帮助!

关于google-apps-script - 如何使用 Apps 脚本将 .docx 文件转换为 Google 文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59535096/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com