您好,欢迎光临本网站![请登录][注册会员]  
文件名称: FileTypeAndIcon
  所属分类: C#
  开发工具:
  文件大小: 14kb
  下载次数: 0
  上传时间: 2015-05-18
  提 供 者: qq_28******
 详细说明: C# 根据文件类型获取文件图标 using System; using System.Collections.Generic; using System.Collections; using System.Text; using System.Runtime.InteropServices; using Microsoft.Win32; using System.Drawing; namespace FileTypeAndIcon { /// /// Structure that encapsulates basic information of icon embedded in a file. /// public struct EmbeddedIconInfo { public string FileName; public int IconIndex; } public class RegisteredFileType { #region APIs [DllImport("shell32.dll", EntryPoint = "ExtractIconA", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)] private static extern IntPtr ExtractIcon(int hInst, string lpszExeFileName, int nIconIndex); [DllImport("shell32.dll", CharSet = CharSet.Auto)] private static extern uint ExtractIconEx(string szFileName, int nIconIndex, IntPtr[] phiconLarge, IntPtr[] phiconSmall, uint nIcons); [DllImport("user32.dll", EntryPoint = "DestroyIcon", SetLastError = true)] private static unsafe extern int DestroyIcon(IntPtr hIcon); #endregion #region CORE METHODS /// /// Gets registered file types and their associated icon in the system. /// /// Returns a hash table which contains the file extension as keys, the icon file and param as values. public static Hashtable GetFileTypeAndIcon() { try { // Create a registry key object to represent the HKEY_CLASSES_ROOT registry section RegistryKey rkRoot = Registry.ClassesRoot; //Gets all sub keys' names. string[] keyNames = rkRoot.GetSubKeyNames(); Hashtable iconsInfo = new Hashtable(); //Find the file icon. foreach (string keyName in keyNames) { if (String.IsNullOrEmpty(keyName)) continue; int indexOfPoint = keyName.IndexOf("."); //If this key is not a file exttension(eg, .zip), skip it. if (indexOfPoint != 0) continue; RegistryKey rkFileType = rkRoot.OpenSubKey(keyName); if (rkFileType == null) continue; //Gets the default value of this key that contains the information of file type. object defaultValue = rkFileType.GetValue(""); if (defaultValue == null) continue; //Go to the key that specifies the default icon associates with this file type. string defaultIcon = defaultValue.ToString() + "\\DefaultIcon"; RegistryKey rkFileIcon = rkRoot.OpenSubKey(defaultIcon); if (rkFileIcon != null) { //Get the file contains the icon and the index of the icon in that file. object value = rkFileIcon.GetValue(""); if (value != null) { //Clear all unecessary " sign in the string to avoid error. string fileParam = value.ToString().Replace("\"", ""); iconsInfo.Add(keyName, fileParam); } rkFileIcon.Close(); } rkFileType.Close(); } rkRoot.Close(); return iconsInfo; } catch (Exception exc) { throw exc; } } /// /// Extract the icon from file. /// /// The params string, /// such as ex: "C:\\Program Files\\NetMeeting\\conf.exe,1". /// This method always returns the large size of the icon (may be 32x32 px). public static Icon ExtractIconFromFile(string fileAndParam) { try { EmbeddedIconInfo embeddedIcon = getEmbeddedIconInfo(fileAndParam); //Gets the handle of the icon. IntPtr lIcon = ExtractIcon(0, embeddedIcon.FileName, embeddedIcon.IconIndex); //Gets the real icon. return Icon.FromHandle(lIcon); } catch (Exception exc) { throw exc; } } /// /// Extract the icon from file. /// /// The params string, /// such as ex: "C:\\Program Files\\NetMeeting\\conf.exe,1". /// /// Determines the returned icon is a large (may be 32x32 px) /// or small icon (16x16 px). public static Icon ExtractIconFromFile(string fileAndParam, bool isLarge) { unsafe { uint readIconCount = 0; IntPtr[] hDummy = new IntPtr[1] { IntPtr.Zero }; IntPtr[] hIconEx = new IntPtr[1] { IntPtr.Zero }; try { EmbeddedIconInfo embeddedIcon = getEmbeddedIconInfo(fileAndParam); if (isLarge) readIconCount = ExtractIconEx(embeddedIcon.FileName, 0, hIconEx, hDummy, 1); else readIconCount = ExtractIconEx(embeddedIcon.FileName, 0, hDummy, hIconEx, 1); if (readIconCount > 0 && hIconEx[0] != IntPtr.Zero) { // Get first icon. Icon extractedIcon = (Icon)Icon.FromHandle(hIconEx[0]).Clone(); return extractedIcon; } else // No icon read return null; } catch (Exception exc) { // Extract icon error. throw new ApplicationException("Could not extract icon", exc); } finally { // Release resources. foreach (IntPtr ptr in hIconEx) if (ptr != IntPtr.Zero) DestroyIcon(ptr); foreach (IntPtr ptr in hDummy) if (ptr != IntPtr.Zero) DestroyIcon(ptr); } } } #endregion #region UTILITY METHODS /// /// Parses the parameters string to the structure of EmbeddedIconInfo. /// /// The params string, /// such as ex: "C:\\Program Files\\NetMeeting\\conf.exe,1". /// protected static EmbeddedIconInfo getEmbeddedIconInfo(string fileAndParam) { EmbeddedIconInfo embeddedIcon = new EmbeddedIconInfo(); if (String.IsNullOrEmpty(fileAndParam)) return embeddedIcon; //Use to store the file contains icon. string fileName = String.Empty; //The index of the icon in the file. int iconIndex = 0; string iconIndexString = String.Empty; int commaIndex = fileAndParam.IndexOf(","); //if fileAndParam is some thing likes that: "C:\\Program Files\\NetMeeting\\conf.exe,1". if (commaIndex > 0) { fileName = fileAndParam.Substring(0, commaIndex); iconIndexString = fileAndParam.Substring(commaIndex + 1); } else fileName = fileAndParam; if (!String.IsNullOrEmpty(iconIndexString)) { //Get the index of icon. iconIndex = int.Parse(iconIndexString); if (iconIndex < 0) iconIndex = 0; //To avoid the invalid index. } embeddedIcon.FileName = fileName; embeddedIcon.IconIndex = iconIndex; return embeddedIcon; } #endregion } } ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: C# FileType Icon
 输入关键字,在本站1000多万海量源码库中尽情搜索: