我尝试用应用脚本打开一个 xls。
我可以通过以下方式获取文件的内容类型:
var attach = messages[j].getAttachments()[0];
var name = attach.getName();
var type = attach.getContentType();
我得到:
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
但是,我如何阅读单元格中的信息?
编辑
如果我使用
DocsList.createFile(attach);
已attach
添加到 google 文档列表中。