以CListCtrl为例,使用CFileFind类查找文件并获取文件的图标填充到CListCtrl中

主要代码如下:

int CTestDlg::OnInitDialog(void){//获取控件指针CListCtrl* plst_ctl=(CListCtrl*)GetDlgItem(IDC_LIST1);//IDC_LIST1为CListCtrl控件的ID//添加图标(将图标存放在CImageList对象中,并与CListCrtl控件相关联)//m_p_w_picpathlist_b.Create(32,32,ILC_COLOR32|ILC_MASK ,0,0);//大图标m_p_w_picpathlist_s.Create(16,16,ILC_COLOR32|ILC_MASK ,0,0);//小图标//plst_ctl->SetImageList(&m_p_w_picpathlist_b,LVSIL_NORMAL);//大图标plst_ctl->SetImageList(&m_p_w_picpathlist_s,LVSIL_SMALL);CFileFind findfile; //查找windows目录下的所有文件int nfound=findfile.FindFile(L"C:\\Windows\\//*.*");int i=0; while(nfound) { nfound=findfile.FindNextFile();  //如果为文件夹则跳过 if (findfile.IsDirectory()) { continue; } SHFILEINFO finfo; //获取文件信息,主要图标icon SHGetFileInfo(findfile.GetFilePath(),0,&finfo,sizeof(finfo),SHGFI_ICON ); //添加文件项目和图标 //m_p_w_picpathlist_b.Add(finfo.hIcon);//向ImageList里添加图标资源 plst_ctl->InsertItem(i++,findfile.GetFileName(), m_p_w_picpathlist_s.Add(finfo.hIcon)); }findfile.Close();//释放资源return 0;}

运行结果: