使用GTK查找给定MIME类型的文件图标

时间:2010-05-12 10:11:27

标签: gtk pygtk mime-types

有没有办法使用GTK / pygtk找出用于给定MIME类型的图标?

我知道gio.File(filename).query_info("standard::icon").get_icon(),但我需要找到图标而不必阅读文件。

1 个答案:

答案 0 :(得分:5)

试试gio.content_type_get_icon()。 E.g:

>>> gio.content_type_get_icon ('text/python')
<gio.ThemedIcon at 0xb7d0f734: text-python, gnome-mime-text-python, text-x-generic>