我不允许访问文件内容(出于性能原因),因此不能选择使用 GFile。
最佳答案
你需要 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
关于gtk - 如何从文件扩展名中获取 GTK mime-type/content-type 信息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5724080/