Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Filetype association with application (C#)

I have a few questions related:

1) Is possible to make my program change filetype association but only when is running? Do you see anything wrong with this behavior?

2) The other option that I'm seeing is to let users decide to open with my application or restore default association ... something like: "capture all .lala files" or "restore .lala association". How can I do this? What do you think that is the best approach?

like image 901
Tute Avatar asked Oct 21 '08 16:10

Tute


1 Answers

Regarding file associations, I've wrote an answer earlier that at least covers the "How".

This should also point you to the right direction how to handle backup and restore. With direct registry access through c#, there will be no need to use .reg files, so you are free to back up the previous value however you like in your app, and also restore it from there.

The key question here is: Should you change file associations randomly? At least asking the user up-front would obviously be necessary (as you also indicated).

Furthermore, Vista users with UAC enabled, or non-privileged users of other Windows versions may not have the required permission to change global file associations. The (un)installation procedure of your program may be the only place where this can succeed.

EDIT

As Franci Penov indicated in his answer, there is a way to change local file associations on a per-user basis, even for non-admins (that's why I spoke of "global associations" in the previous paragraph). He also mentioned mentioned why going there is not overly advisable.

like image 183
Tomalak Avatar answered Jan 21 '23 10:01

Tomalak