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