apps脚本:xls将gmail附加到Google电子表格中

时间:2013-01-29 02:53:59

标签: google-apps-script google-sheets

我尝试用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

1 个答案:

答案 0 :(得分:0)

我解决了用驱动器上传文件

https://gist.github.com/4666836