Click here to Skip to main content
15,888,610 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.3K   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

 
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 
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
mve#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.