Click here to Skip to main content
15,887,135 members
Articles / Programming Languages / C#

C# FileAssociation Class

Rate me:
Please Sign up or sign in to vote.
4.21/5 (15 votes)
14 Nov 2009CDDL1 min read 68K   2.6K   75   18
Allows you to quickly create, edit, and delete file associations in your registry. A file extension's default icon, description, executable application, etc.

Introduction

My small library here allows you to set File Associations. File Associations are a group of multiple keys in your registry that set what program a file type opens with, the description of the file type that's shown in the file properties dialog, the icon that's shown on a file type, and even what programs are displayed in the dialog that opens when Windows can't find the program that opens with a file type (Open with list).

Background

I've been using C# for about a year now... I previously ran into the problem of File Associations when I was working on a big word processor project with never-before-seen features. So I did some research and figured out how to do this.

Using the Code

The download at the top contains a CS file and a DLL file. The CS file contains my library's code so you can learn how it all works, and the DLL is for adding a reference to in your programs. The code block below shows how you use the library after referencing it.

C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using AF_Lib.IO.Associations;

public class AFFileAssociations_Example
{
    public static void Main()
    {
        // Initializes a new AF_FileAssociator to associate the .ABC file extension.
        AF_FileAssociator assoc = new AF_FileAssociator(".abc");

        // Creates a new file association for the .ABC file extension. 
        // Data is overwritten if it already exists.
        assoc.Create("My_App",
            "My application's file association",
            new ProgramIcon(@"C:\Program Files\My_App\icon.ico"),
            new ExecApplication(@"C:\Program Files\My_App\myapp.exe"),
            new OpenWithList(new string[] { "My_App" }));

        // Gets each piece of association info individually, all as strings.
        string id = assoc.ID;
        string description = assoc.Description;
        string icon = assoc.DefaultIcon.IconPath;
        string execApp = assoc.Executable.Path;
        string[] openWithList = assoc.OpenWith.List;

        // Sets each piece of association info individually.
        ProgramIcon newDefIcon = new ProgramIcon(@"C:\Program Files\My_App\icon2.ico");
        ExecApplication newExecApp = 
		new ExecApplication(@"C:\Program Files\My_App\myapp2.exe");
        OpenWithList newOpenWith = new OpenWithList(new string[] { "myapp2.exe" });

        assoc.ID = "My_App_2";
        assoc.Description = "My application's file association #2";
        assoc.DefaultIcon = newDefIcon;
        assoc.Executable = newExecApp;
        assoc.OpenWith = newOpenWith;

        // Gets the extension of the associator that was set when initializing it.
        string extension = assoc.Extension;

        // Deletes any keys that were associated with the .ABC file extension.
        assoc.Delete();
    }
} 

Points of Interest

This library should be very helpful. The attachment on this project contains my code file, and the DLL to reference it. Please leave any questions or comments below. Thanks for reading my article!

History

  • 10th November, 2009: Initial post
  • 11th November, 2009: Updated source code

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
Software Developer Ricco Solutions
United States United States
http://aidanfollestad.com/

Comments and Discussions

 
GeneralSupport file paths with spaces Pin
Dmitry S. Putyatov5-Jan-17 6:54
Dmitry S. Putyatov5-Jan-17 6:54 
Questionargs does not pass correctly Pin
Member 1108003724-Feb-15 0:06
Member 1108003724-Feb-15 0:06 
Questioncan u help me? Pin
Le@rner16-Apr-14 20:14
Le@rner16-Apr-14 20:14 
QuestionHow to make file de-association made by other application? Pin
Stan Huang19-Feb-14 20:30
professionalStan Huang19-Feb-14 20:30 
AnswerRe: How to make file de-association made by other application? Pin
Stan Huang19-Feb-14 22:28
professionalStan Huang19-Feb-14 22:28 
QuestionIt think it would be nice if you can update your article to ensure nobody will continue to use it. Pin
Eric Ouellet16-Oct-13 6:01
professionalEric Ouellet16-Oct-13 6:01 
QuestionAssociation file path??? Pin
KM Perumal8-Nov-12 7:56
KM Perumal8-Nov-12 7:56 
GeneralDeprecated Pin
Aidan Follestad8-Jul-10 20:34
Aidan Follestad8-Jul-10 20:34 
NewsA compacter way in vb.net Pin
Michael Bakker6-Jan-10 9:18
Michael Bakker6-Jan-10 9:18 
GeneralGumby Question here: Adding DLL as a reference Pin
chris_ciptech8-Dec-09 16:07
chris_ciptech8-Dec-09 16:07 
GeneralRe: Gumby Question here: Adding DLL as a reference Pin
nethsu5-Oct-10 23:03
nethsu5-Oct-10 23:03 
GeneralFROM CREATOR: IMPORTANT INFORMATION Pin
Aidan Follestad11-Nov-09 17:00
Aidan Follestad11-Nov-09 17:00 
GeneralLooks good! Pin
Anthony Daly11-Nov-09 10:02
Anthony Daly11-Nov-09 10:02 
GeneralRe: Looks good! Pin
Aidan Follestad11-Nov-09 15:02
Aidan Follestad11-Nov-09 15:02 
GeneralOpenWithList Pin
Johnny J.10-Nov-09 20:51
professionalJohnny J.10-Nov-09 20:51 
GeneralRe: OpenWithList Pin
Johnny J.10-Nov-09 21:01
professionalJohnny J.10-Nov-09 21:01 
GeneralRe: OpenWithList Pin
Aidan Follestad11-Nov-09 15:08
Aidan Follestad11-Nov-09 15:08 
GeneralRe: OpenWithList Pin
Aidan Follestad11-Nov-09 15:03
Aidan Follestad11-Nov-09 15:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.