2010-04-23 21 views
20

मैं जानता हूँ कि मैंकिसी दिए गए विस्तार

using (System.Drawing.Icon sysicon = System.Drawing.Icon.ExtractAssociatedIcon(filePath)) 
{ 
    icon = System.Windows.Interop.Imaging.CreateBitmapSourceFromHIcon(
     sysicon.Handle, 
     System.Windows.Int32Rect.Empty, 
     System.Windows.Media.Imaging.BitmapSizeOptions.FromEmptyOptions()); 
} 

का उपयोग कर एक फाइल के आइकन निकाल सकते हैं के लिए आइकन जाओ लेकिन यह कैसे मैं, कोई फाइल के साथ, किसी दिए गए एक्सटेंशन मिल सकता है?

+0

क्या आपका मतलब डिफ़ॉल्ट आइकन का उपयोग करना है जो विंडोज़ आपकी नई फाइलों को असाइन करता है? क्योंकि उस स्थिति में यह फ़ाइल एक्सटेंशन पर निर्भर करता है। आप जो चाहते हैं उसके बारे में अधिक जानकारी दें। अनुमान के लिए –

उत्तर

33

पॉल Ingles से this CodeProject लेख से GetFileIcon विधि का उपयोग करें और .extname पैरामीटर के रूप में गुजरती हैं।

public static System.Drawing.Icon GetFileIcon(string name, IconSize size, 
               bool linkOverlay) 
{ 
    Shell32.SHFILEINFO shfi = new Shell32.SHFILEINFO(); 
    uint flags = Shell32.SHGFI_ICON | Shell32.SHGFI_USEFILEATTRIBUTES; 

    if (true == linkOverlay) flags += Shell32.SHGFI_LINKOVERLAY; 


    /* Check the size specified for return. */ 
    if (IconSize.Small == size) 
    { 
     flags += Shell32.SHGFI_SMALLICON ; // include the small icon flag 
    } 
    else 
    { 
     flags += Shell32.SHGFI_LARGEICON ; // include the large icon flag 
    } 

    Shell32.SHGetFileInfo(name, 
     Shell32.FILE_ATTRIBUTE_NORMAL, 
     ref shfi, 
     (uint) System.Runtime.InteropServices.Marshal.SizeOf(shfi), 
     flags); 


    // Copy (clone) the returned icon to a new object, thus allowing us 
    // to call DestroyIcon immediately 
    System.Drawing.Icon icon = (System.Drawing.Icon) 
         System.Drawing.Icon.FromHandle(shfi.hIcon).Clone(); 
    User32.DestroyIcon(shfi.hIcon); // Cleanup 
    return icon; 
} 
+2

+1 फ्यू और सही उत्तर के लिए +1। –

+2

32x32 पीएक्स तक काम करता है ... आदर्श नहीं है ... अच्छा, इन दिनों और कुछ भी –

19

कोड नीचे भी Paul Ingles solution पर आधारित है, लेकिन:

करने योग्य WPF साथ
  • (ImageSource बजाय

    GetFileIcon विधि देशी SHGetFileInfo के चारों ओर एक आवरण और यहाँ उदाहरण के लिए कॉपी की गई है Icon)

  • सरल कैशिंग
  • है निर्देशिका से संबंधित सभी सामान (मैं सिर्फ अपने मामले में फ़ाइलें)
  • , आर # युक्तियों का उपयोग पुनर्स्थापन और यह एक एकल वर्ग सरल एपीआई

मैं Windows 7 और Windows XP SP3 पर यह परीक्षण किया है के साथ लिपटे निकाला गया किसी भी स्ट्रिंग के साथ fileName के रूप में अपेक्षित काम करता है।

using System; 
using System.Collections.Generic; 
using System.Drawing; 
using System.IO; 
using System.Runtime.InteropServices; 
using System.Windows; 
using System.Windows.Interop; 
using System.Windows.Media; 
using System.Windows.Media.Imaging; 

/// <summary> 
/// Internals are mostly from here: http://www.codeproject.com/Articles/2532/Obtaining-and-managing-file-and-folder-icons-using 
/// Caches all results. 
/// </summary> 
public static class IconManager 
{ 
    private static readonly Dictionary<string, ImageSource> _smallIconCache = new Dictionary<string, ImageSource>(); 
    private static readonly Dictionary<string, ImageSource> _largeIconCache = new Dictionary<string, ImageSource>(); 
    /// <summary> 
    /// Get an icon for a given filename 
    /// </summary> 
    /// <param name="fileName">any filename</param> 
    /// <param name="large">16x16 or 32x32 icon</param> 
    /// <returns>null if path is null, otherwise - an icon</returns> 
    public static ImageSource FindIconForFilename(string fileName, bool large) 
    { 
     var extension = Path.GetExtension(fileName); 
     if (extension == null) 
      return null; 
     var cache = large ? _largeIconCache : _smallIconCache; 
     ImageSource icon; 
     if (cache.TryGetValue(extension, out icon)) 
      return icon; 
     icon = IconReader.GetFileIcon(fileName, large ? IconReader.IconSize.Large : IconReader.IconSize.Small, false).ToImageSource(); 
     cache.Add(extension, icon); 
     return icon; 
    } 
    /// <summary> 
    /// http://stackoverflow.com/a/6580799/1943849 
    /// </summary> 
    static ImageSource ToImageSource(this Icon icon) 
    { 
     var imageSource = Imaging.CreateBitmapSourceFromHIcon(
      icon.Handle, 
      Int32Rect.Empty, 
      BitmapSizeOptions.FromEmptyOptions()); 
     return imageSource; 
    } 
    /// <summary> 
    /// Provides static methods to read system icons for both folders and files. 
    /// </summary> 
    /// <example> 
    /// <code>IconReader.GetFileIcon("c:\\general.xls");</code> 
    /// </example> 
    static class IconReader 
    { 
     /// <summary> 
     /// Options to specify the size of icons to return. 
     /// </summary> 
     public enum IconSize 
     { 
      /// <summary> 
      /// Specify large icon - 32 pixels by 32 pixels. 
      /// </summary> 
      Large = 0, 
      /// <summary> 
      /// Specify small icon - 16 pixels by 16 pixels. 
      /// </summary> 
      Small = 1 
     } 
     /// <summary> 
     /// Returns an icon for a given file - indicated by the name parameter. 
     /// </summary> 
     /// <param name="name">Pathname for file.</param> 
     /// <param name="size">Large or small</param> 
     /// <param name="linkOverlay">Whether to include the link icon</param> 
     /// <returns>System.Drawing.Icon</returns> 
     public static Icon GetFileIcon(string name, IconSize size, bool linkOverlay) 
     { 
      var shfi = new Shell32.Shfileinfo(); 
      var flags = Shell32.ShgfiIcon | Shell32.ShgfiUsefileattributes; 
      if (linkOverlay) flags += Shell32.ShgfiLinkoverlay; 
      /* Check the size specified for return. */ 
      if (IconSize.Small == size) 
       flags += Shell32.ShgfiSmallicon; 
      else 
       flags += Shell32.ShgfiLargeicon; 
      Shell32.SHGetFileInfo(name, 
       Shell32.FileAttributeNormal, 
       ref shfi, 
       (uint)Marshal.SizeOf(shfi), 
       flags); 
      // Copy (clone) the returned icon to a new object, thus allowing us to clean-up properly 
      var icon = (Icon)Icon.FromHandle(shfi.hIcon).Clone(); 
      User32.DestroyIcon(shfi.hIcon);  // Cleanup 
      return icon; 
     } 
    } 
    /// <summary> 
    /// Wraps necessary Shell32.dll structures and functions required to retrieve Icon Handles using SHGetFileInfo. Code 
    /// courtesy of MSDN Cold Rooster Consulting case study. 
    /// </summary> 
    static class Shell32 
    { 
     private const int MaxPath = 256; 
     [StructLayout(LayoutKind.Sequential)] 
     public struct Shfileinfo 
     { 
      private const int Namesize = 80; 
      public readonly IntPtr hIcon; 
      private readonly int iIcon; 
      private readonly uint dwAttributes; 
      [MarshalAs(UnmanagedType.ByValTStr, SizeConst = MaxPath)] 
      private readonly string szDisplayName; 
      [MarshalAs(UnmanagedType.ByValTStr, SizeConst = Namesize)] 
      private readonly string szTypeName; 
     }; 
     public const uint ShgfiIcon = 0x000000100;  // get icon 
     public const uint ShgfiLinkoverlay = 0x000008000;  // put a link overlay on icon 
     public const uint ShgfiLargeicon = 0x000000000;  // get large icon 
     public const uint ShgfiSmallicon = 0x000000001;  // get small icon 
     public const uint ShgfiUsefileattributes = 0x000000010;  // use passed dwFileAttribute 
     public const uint FileAttributeNormal = 0x00000080; 
     [DllImport("Shell32.dll")] 
     public static extern IntPtr SHGetFileInfo(
      string pszPath, 
      uint dwFileAttributes, 
      ref Shfileinfo psfi, 
      uint cbFileInfo, 
      uint uFlags 
      ); 
    } 
    /// <summary> 
    /// Wraps necessary functions imported from User32.dll. Code courtesy of MSDN Cold Rooster Consulting example. 
    /// </summary> 
    static class User32 
    { 
     /// <summary> 
     /// Provides access to function required to delete handle. This method is used internally 
     /// and is not required to be called separately. 
     /// </summary> 
     /// <param name="hIcon">Pointer to icon handle.</param> 
     /// <returns>N/A</returns> 
     [DllImport("User32.dll")] 
     public static extern int DestroyIcon(IntPtr hIcon); 
    } 
} 
+0

क्या यह जंबो आइकन प्राप्त कर सकता है? –

+0

@ नाइटथॉक 441 मुझे यकीन नहीं है कि जंबो आइकन (बड़ा आइकन?) क्या है। आप बेहतर प्रयास करेंगे। – astef

+0

रिकॉर्ड के लिए: नहीं, SHGetFileInfo केवल 32x32 पीएक्स –

संबंधित मुद्दे