views:

135

answers:

2

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!

+3  A: 

SHGetFileInfo can get a handle for the icon of a file.

Devin Jeanpierre
Thank you very much!
+2  A: 

You need to use SHGetFileInfo. This looks like a pretty good example for .NET.

Blorgbeard