我想实现一个文件资源管理器,如何读取文件的图标并显示它们?
我想实现一个文件资源管理器,它与普通的文件资源管理器不同,它首先扫描文件系统并将信息存储到数据库中,它们从数据库中读取文件系统信息,并显示它们,我需要存储文件的图标,我怎样才能做到这一点? 有Windows API吗? 非常感谢!
I want to implement a File Explorer, It is different from a normal file explorer, it first scan file system and store information into database, them read file system information from Database, and display them, I need to store the icons of the file, how can I do this? Is there any Windows APIs?
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SHGetFileInfo 可以获取以下图标的句柄一份文件。
SHGetFileInfo can get a handle for the icon of a file.
您需要使用 SHGetFileInfo。 这看起来是一个非常好的.NET示例。
You need to use SHGetFileInfo. This looks like a pretty good example for .NET.