Click here to Skip to main content
15,906,645 members
Articles / Desktop Programming / MFC
Article

An ShGetFileInfo Wrapper Class

Rate me:
Please Sign up or sign in to vote.
4.50/5 (33 votes)
6 Feb 20031 min read 150.8K   3.5K   34   34
A class built around the use of ShGetFileInfo() function.

Sample Image

Introduction

The CUseShGetFileInfo class is built around the use of ShGetFileInfo() function. It's a very simple class, but I think it can be usefull. You will not have to worry anymore about setting flags and it also works for names of files that do not exist. You don't need to know the full path for a certain file in order to obtain its icon, file type or its icon's index in the system's image list (both large icons and small icons). It also provides a function for obtaining a handle to the system's image list.

User functions

Use the GetFileIconIndex function to obtain the index of the file's associated icon in the system's image list.

int CUseShGetFileInfo::GetFileIconIndex( CString strFileName , BOOL bSmallIcon )

Use the GetDirIconIndex function to obtain the index of the folder's associated icon in the system's image list.

int CUseShGetFileInfo::GetDirIconIndex( BOOL bSmallIcon )

Use the GetFileIconHandle function to obtain a handle to the file's associated icon in the system's image list.

HICON CUseShGetFileInfo::GetFileIconHandle( CString strFileName, BOOL bSmallIcon )

Use the GetFolderIconHandle function to obtain a handle to the folder's associated icon in the system's image list.

HICON CUseShGetFileInfo::GetFolderIconHandle( BOOL bSmallIcon )

Use the GetFileType function to obtain a file's type (e.g. Winamp media file).

CString CUseShGetFileInfo::GetFileType( CString strFileName)

Use the GetSystemImageListHandle function to obtain a handle to the system's image list (large icons or small icons). Use this function to create a CImageList object to attach to a list control. After this image list is attached to the list control, use GetFileIconIndex or GetDirIconIndex to obtain the value to set for the nImage field (e.g. CListCtrl::InsertItem() function)

HIMAGELIST CUseShGetFileInfo::GetSystemImageListHandle( BOOL bSmallIcon )

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Romania Romania
Still a student at a computer science related faculty in the University of Craiova, Romania :Frown | :(
Hope that one day I'll graduate! Smile | :) ). Programming for last 8 years (Visual C++ for the last 2 years).

Comments and Discussions

 
Generalremove this crap article from Cp. Thanks. Pin
Stephane Rodriguez.7-Feb-03 2:11
Stephane Rodriguez.7-Feb-03 2:11 
GeneralRe: remove this crap article from Cp. Thanks. Pin
Jörgen Sigvardsson7-Feb-03 2:27
Jörgen Sigvardsson7-Feb-03 2:27 
GeneralRe: remove this crap article from Cp. Thanks. Pin
Stephane Rodriguez.7-Feb-03 2:44
Stephane Rodriguez.7-Feb-03 2:44 
GeneralRe: remove this crap article from Cp. Thanks. Pin
KarstenK7-Feb-03 3:10
mveKarstenK7-Feb-03 3:10 
GeneralRe: remove this crap article from Cp. Thanks. Pin
.:floyd:.11-Feb-04 1:45
.:floyd:.11-Feb-04 1:45 
GeneralRe: remove this crap article from Cp. Thanks. Pin
KarstenK11-Feb-04 2:59
mveKarstenK11-Feb-04 2:59 
GeneralRe: remove this crap article from Cp. Thanks. Pin
.:floyd:.11-Feb-04 3:15
.:floyd:.11-Feb-04 3:15 
GeneralRe: remove this crap article from Cp. Thanks. Pin
Jörgen Sigvardsson7-Feb-03 3:46
Jörgen Sigvardsson7-Feb-03 3:46 
I did look at the code, and yes I did see it was a very thin layer ontop of SHGetFileInfo(). However, it can simplify client code considerably. And he also mentions this - ... It's a very simple class, but I think it can be usefull. You will not have to worry anymore about setting flags ... He didn't just paste the code into a big <pre> block. He did state the simplicity of the class, and documented its API. What more do you ask of him for this particular code?

Just look at CUseShGetFileInfo::GetFileType(). It compresses code quite a lot! If scrapping boiler plate code isn't useful, then I guess I'm a really lousy programmer, because that's what I do as often as possible.

If you have a problem with the article, rate it and explain why you dislike it. In any case, you have no right to insult him. Even less so if you're not even explaing why you are insulting him!

--
"It is amazing how f-ing crazy I really am."
GeneralRe: remove this crap article from Cp. Thanks. Pin
Anna-Jayne Metcalfe7-Feb-03 2:30
Anna-Jayne Metcalfe7-Feb-03 2:30 
GeneralRe: remove this crap article from Cp. Thanks. Pin
Michael P Butler7-Feb-03 2:49
Michael P Butler7-Feb-03 2:49 
GeneralRe: remove this crap article from Cp. Thanks. Pin
#realJSOP7-Feb-03 3:07
professional#realJSOP7-Feb-03 3:07 
GeneralRe: remove this crap article from Cp. Thanks. Pin
Paul Vickery7-Feb-03 3:09
professionalPaul Vickery7-Feb-03 3:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.