vote up 8 vote down star
8

In .Net (C# or VB: don't care), given a file path string, FileInfo struct, or FileSystemInfo struct for a real existing file, how can I determine the icon(s) used by the shell (explorer) for that file?

I'm not currently planning to use this for anything, but I became curious about how to do it when looking at this question and I thought it would be useful to have archived here on SO.

flag

63% accept rate

5 Answers

vote up 10 vote down check
Imports System.Drawing
Module Module1

    Sub Main()    
        Dim filePath As String =  "C:\myfile.exe"  
        Dim TheIcon As Icon = IconFromFile(filePath)  

        If TheIcon IsNot Nothing Then    
            ''#Save it to disk, or do whatever you want with it.
            Using stream As New System.IO.FileStream("c:\myfile.ico", IO.FileMode.CreateNew)
                TheIcon.Save(stream)          
            End Using
        End If
    End Sub

    Public Function IconFromFilePath(filePath As String) As Icon
        Dim result As Icon = Nothing
        Try
            result = Icon.ExtractAssociatedIcon(filePath)
        Catch ''# swallow and return nothing. You could supply a default Icon here as well
        End Try
        Return result
    End Function
End Module
link|flag
That's fine for .exes, .dlls, or other files that contain icons. But what about text files or other simple files, where the icon may vary based on what program was installed or a setting the user altered? – Joel Coehoorn Jan 20 at 17:44
It should work for ALL files that has an associated icon, it does not have to have an assoiciated program what I know. – Stefan Jan 20 at 17:52
What is returned if there is no associated icon? – Joel Coehoorn Jan 20 at 18:01
+1 Icon.ExtractAssociatedIcon will return exactly the same icon as the one showed by windows explorer – wcoenen Jan 20 at 18:55
1  
Testing shows this does work. I was unclear on his initial explanation- I thought it only looked for Icon resources within the file itself, but happily this turns out not to be the case. – Joel Coehoorn Jan 20 at 19:54
show 4 more comments
vote up 7 vote down

Please ignore everyone telling you to use the registry! The registry is NOT AN API. The API you want is SHGetFileInfo with SHGFI_ICON. You can get a P/Invoke signature here:

http://www.pinvoke.net/default.aspx/shell32.SHGetFileInfo

link|flag
Since we are after C# or VB, Stefan's answer is much simpler. – wcoenen Jan 20 at 18:57
vote up 2 vote down

You should use SHGetFileInfo.

Icon.ExtractAssociatedIcon works just as well as SHGetFileInfo in most cases, but SHGetFileInfo can work with UNC paths (e.g. a network path like "\\ComputerName\SharedFolder\") while Icon.ExtractAssociatedIcon cannot. If you need or might need to use UNC paths, it would be best to use SHGetFileInfo instead of Icon.ExtractAssociatedIcon.

This is good CodeProject article on how to use SHGetFileInfo.

link|flag
vote up 0 vote down

This link seems to have some info. It involves a lot of registry traversing, but it seems doable. The examples are in C++

link|flag
vote up 0 vote down
  • determine extension
  • in registry, go to "HKCR\.{extension}", read the default value (let's call it filetype)
  • in "HKCR\{filetype}\DefaultIcon", read the default value: this is the path to the icon file (or icon container file, like an .exe with an embedded icon resource)
  • if needed, use your preferred method of extracting the icon resource out of the mentioned file

edit/moved up from the comments:

If the icon is in a container file (this is quite common), there will be a counter after the path, like this: "foo.exe,3". This means it is icon number 4 (the index is zero-based) of the available icons. A value of ",0" is implicit (and optional). If the counter is 0 or missing, the fist available icon will be used by the shell.

link|flag
If it's an icon container file that contains several icons, how do you know which to use? – Joel Coehoorn Jan 20 at 18:02
There is a counter after the path, like "foo.exe,3". This means it is icon no. 4 (the index is zero-based) of the available icons. A value of ",0" is implicit and therefore optional. If it is missing, the fist available icon will be used by the shell. – Tomalak Jan 20 at 18:04
The registry is not an API! There are other ways to specify icons, and this method will be wrong. Please use the SHGetFileInfo API for this. – timbagas Jan 20 at 18:31
@timbagas: "and this method will be wrong"... Wrong in what way, other than "not using an API"? – Tomalak Jan 20 at 18:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.