我写了一个mime type文件,意思是以CORP_DOC这8个字符开头的文件都是application/xl-dss-doc类型。
代码: 全选
<?xml version="1.0" encoding="utf-8"?>
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
<mime-type type="application/xl-dss-doc">
<comment>DLP DOC</comment>
<magic priority="100" >
<match type="string" offset="0" value="CORP_DOC" />
</magic>
<glob pattern="*.doc" weight="40" />
<glob pattern="*.docx" weight="40" />
<glob pattern="*.xls" weight="40" />
<glob pattern="*.xlsx" weight="40" />
<glob pattern="*.ppt" weight="40" />
<glob pattern="*.pptx" weight="40" />
<glob pattern="*.pdf" weight="40" />
<glob pattern="*.bmp" weight="40" />
<glob pattern="*.png" weight="40" />
<glob pattern="*.jpg" weight="40" />
<glob pattern="*.jpeg" weight="40" />
<glob pattern="*.txt" weight="40" />
<generic-icon name="dss_ico"/>
</mime-type>
</mime-info>
https://specifications.freedesktop.org/ ... ec/latest/ 这里是规范文档吧,我看了一阵,没发现这方面的解释