How to associate a file extension to the current executable in C#

There doesn’t appear to be a .Net API for directly managing file associations but you can use the Registry classes for reading and writing the keys you need to.

You’ll need to create a key under HKEY_CLASSES_ROOT with the name set to your file extension (eg: “.txt”). Set the default value of this key to a unique name for your file type, such as “Acme.TextFile”. Then create another key under HKEY_CLASSES_ROOT with the name set to “Acme.TextFile”. Add a subkey called “DefaultIcon” and set the default value of the key to the file containing the icon you wish to use for this file type. Add another sibling called “shell”. Under the “shell” key, add a key for each action you wish to have available via the Explorer context menu, setting the default value for each key to the path to your executable followed by a space and “%1” to represent the path to the file selected.

For instance, here’s a sample registry file to create an association between .txt files and EmEditor:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\.txt]
@="emeditor.txt"

[HKEY_CLASSES_ROOT\emeditor.txt]
@="Text Document"

[HKEY_CLASSES_ROOT\emeditor.txt\DefaultIcon]
@="%SystemRoot%\\SysWow64\\imageres.dll,-102"

[HKEY_CLASSES_ROOT\emeditor.txt\shell]

[HKEY_CLASSES_ROOT\emeditor.txt\shell\open]

[HKEY_CLASSES_ROOT\emeditor.txt\shell\open\command]
@="\"C:\\Program Files\\EmEditor\\EMEDITOR.EXE\" \"%1\""

[HKEY_CLASSES_ROOT\emeditor.txt\shell\print]

[HKEY_CLASSES_ROOT\emeditor.txt\shell\print\command]
@="\"C:\\Program Files\\EmEditor\\EMEDITOR.EXE\" /p \"%1\""

Leave a Comment