码迷,mamicode.com
首页 > 其他好文 > 详细

用SHGetFileInfo获取文件类型/图标信息

时间:2016-05-14 00:53:44      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:

SHFILEINFO fileInfo;
SHGetFileInfo(
    "C:\\boot.ini", NULL,
    &fileInfo,
    sizeof(SHFILEINFO),
    SHGFI_ICON|SHGFI_TYPENAME);
 
cout<<fileInfo.szTypeName<<"文件"<<endl;
cout<<"0x"<<hex<<fileInfo.hIcon<<endl;
cout<<"0x"<<hex<<fileInfo.dwAttributes<<endl;
 
/* 输出:
    配置设置文件
    0x09FC07B5
    0x40400177
*/
 
//Handle to the icon that represents the file.
//You are responsible for destroying this handle
//with DestroyIcon when you no longer need it.
DestroyIcon(fileInfo.hIcon);

用SHGetFileInfo获取文件类型/图标信息

标签:

原文地址:http://www.cnblogs.com/dgx/p/5491558.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!