如何从文件扩展名中获取GTK mime-type / content-type信息

时间:2011-04-19 23:50:34

标签: gtk gnome

我不允许访问文件内容(出于性能原因),因此使用GFile不是一种选择。

2 个答案:

答案 0 :(得分:4)

你需要g_content_type_guess。

在Python(GTK2)中:

import gio
gio.content_type_guess('foo.pdf')

这将返回application/pdf

在Python(GTK3)中:

from gi.repository import Gio
content_type, val = Gio.content_type_guess('filename=foo.pdf', data=None)

content_type将包含application/pdf

文档中的更多详细信息:http://developer.gnome.org/gio/stable/gio-GContentType.html#g-content-type-guess

答案 1 :(得分:2)

看起来GIO的内容类型检测基于文件扩展名(当有扩展名时)。

$ ./file /bin/sh
application/x-executable
$ cp /bin/sh a.wav
$ ./file a.wav
audio/x-wav

其中./file是

#!/usr/bin/env python2
import sys, gio
f = gio.File(sys.argv[1])
info = f.query_info('standard::content-type')
print info.get_content_type()