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

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

最佳答案

尝试gio.content_type_get_icon()。例如。:

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

10-06 00:58