0

I'm writing a java program and I need to create a save file with an extension invented by me and the file should also have an image chosen by me. Can anyone tell me how to do it?

Javissimo
  • 25
  • 3

1 Answers1

0

How can i assign icon for my custom file extension?

It's a system behaviour you can't alter this unless you change the registery in your machine.

to achive this you need to modify the registery in the deployed system (google for this you'll find links)

you need use RegOpenKeyEx(), RegGetValue(), RegSetKeyValue(), and don't forget to RegCloseKey()

Here's a link to the reference: http://msdn.microsoft.com/en-us/library/ms724875(VS.85).aspx

HKEY_CLASSES_ROOT/

this call to SHChangeNotify this tell explorer to refresh the icon whenever it changes.

Jayanth
  • 5,954
  • 3
  • 21
  • 38