Click here to Skip to main content
Licence CDDL
First Posted 10 Nov 2009
Views 13,794
Downloads 255
Bookmarked 67 times

C# FileAssociation Class

By Aidan Follestad | 14 Nov 2009
Allows you to quickly create, edit, and delete file associations in your registry. A file extension's default icon, description, executable application, etc.

1

2
1 vote, 9.1%
3
3 votes, 27.3%
4
7 votes, 63.6%
5
4.16/5 - 11 votes
μ 4.16, σa 1.20 [?]

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.

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)

About the Author

Aidan Follestad

Other
I'm a student
United States United States

Member
I'm 15 years old (2010). I do computer programming (C++, C#, Java, Android SDK, ASP.NET, Silverlight...), I play the drums, I have been learning Mandarin Chinese for over 2 years, and I snowboard and BMX.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralDeprecated PinmemberAidan Follestad21:34 8 Jul '10  
NewsA compacter way in vb.net PinmemberMichael Bakker10:18 6 Jan '10  
GeneralGumby Question here: Adding DLL as a reference Pinmemberchris_ciptech17:07 8 Dec '09  
GeneralRe: Gumby Question here: Adding DLL as a reference Pinmembernethsu0:03 6 Oct '10  
GeneralFROM CREATOR: IMPORTANT INFORMATION PinmemberAidan F18:00 11 Nov '09  
GeneralLooks good! PinmemberAnt210011:02 11 Nov '09  
GeneralRe: Looks good! PinmemberAidan F16:02 11 Nov '09  
GeneralOpenWithList PinmemberJohnny J.21:51 10 Nov '09  
GeneralRe: OpenWithList PinmemberJohnny J.22:01 10 Nov '09  
GeneralRe: OpenWithList PinmemberAidan F16:08 11 Nov '09  
GeneralRe: OpenWithList PinmemberAidan F16:03 11 Nov '09  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120209.1 | Last Updated 14 Nov 2009
Article Copyright 2009 by Aidan Follestad
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid