如何在Windows中检索任何给定文件类型的默认图标?

时间:2014-08-18 09:39:08

标签: c# .net

如何获取Windows默认使用的指定文件类型的图标?

2 个答案:

答案 0 :(得分:2)

试试这个

    public static Hashtable GetTypeAndIcon()
    {
        try
        {
            RegistryKey icoRoot = Registry.ClassesRoot;
            string[] keyNames = icoRoot.GetSubKeyNames();
            Hashtable iconsInfo = new Hashtable();

            foreach (string keyName in keyNames)
            {
                if (String.IsNullOrEmpty(keyName)) continue;
                int indexOfPoint = keyName.IndexOf(".");

                if (indexOfPoint != 0) continue;

                RegistryKey icoFileType = icoRoot.OpenSubKey(keyName);
                if (icoFileType == null) continue;

                object defaultValue = icoFileType.GetValue("");
                if (defaultValue == null) continue;

                string defaultIcon = defaultValue.ToString() + "\\DefaultIcon";
                RegistryKey icoFileIcon = icoRoot.OpenSubKey(defaultIcon);
                if (icoFileIcon != null)
                {
                    object value = icoFileIcon.GetValue("");
                    if (value != null)
                    {
                        string fileParam = value.ToString().Replace("\"", "");
                        iconsInfo.Add(keyName, fileParam);
                    }
                    icoFileIcon.Close();
                }
                icoFileType.Close();
            }
            icoRoot.Close();
            return iconsInfo;
        }
        catch (Exception exc)
        {
            throw exc;
        }
    }

答案 1 :(得分:1)

文件类型的默认图标,无论您是否碰巧使用其中一种类型的文件,都在 Window的注册表下定义

HKEY_CLASSES_ROOT \ 类型 \ DefaultIcon(默认)

...但为什么在{strong> VirtualBlackFox 对nice c# code sample

的回答中有How do I get common file type icons in C#?的时候修补一下