Click here to Skip to main content
Licence 
First Posted 27 Apr 2002
Views 59,411
Bookmarked 27 times

Application Data Utility Class

By | 27 Apr 2002 | Article
ApplicationData is a generic utility library class for managing an application's data

Introduction

This article introduces a class ApplicationData that simplifies an application's data management

According to the "Designed for Windows XP spec v2.3" you should Classify application data into the following categories:

  • Per user, roaming
  • Per user, non-roaming
  • Per computer (non-user specific and non-roaming)"
NOTE: The three categories are named here as: User, LocalUser and Common respectively.

Knowing where to store files and registry settings for each of this categories can be complicated and require repeating code. This utility class tries to simplify this process. Furthermore, the spec requires that application data should be stored under:

[company name]\[product name]\[version]

The required information is extracted from the assembly attributes (e.g. AssemblyCompanyAttribute), therefore it is highly recommended to fill the appropriate attributes (typically in AssemblyInfo.cs) when using this utility.

Example locations:

  • C:\Documents and Settings\All Users\Application Data\My Company\My Product\1.0.840.34747\Sub1\Sub2\My File.txt
  • "HKEY_CURRENT_USER\Software\My Company\My Product\1.0.840.34747\Local\Sub1\Sub1"

Usage Examples:

// Working with files: 
		
FileInfo file = ApplicationData.LocalUser["Sub1"]["Sub2"].GetFile("file.txt"); 
StreamWriter writer = file.CreateText(); 
writer.WriteLine("This is a test of ApplicationData!"); 
writer.Close(); 
		
// Working with the registry:
 
RegistryKey key = ApplicationData.LocalUser["Sub1"]["Sub2"].GetRegistryKey(); 
key.SetValue("Test", "This is a test!");

Classes used in this utility library include:

System.Windows.Forms.Application which has very useful properties such as: Application.LocalUserAppDataPath, Application.CommonAppDataRegistry, etc...

System.WeakReference which is used to store the references for the three static root instances (Common, LocalUser and User). By using the weak references I don't have to recreate the instances each time they are needed and they can be garbage collected if not used. (see ApplicationData.GetAppDataByType() for implementation)


I hope this utility comes in handy. I would appreciate any comments or suggestions you may have!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Michael Mumcuoglu



United States United States

Member



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
GeneralAbsolute path PinmemberMark E Lawrence13:40 19 Aug '08  
GeneralThanks! Pinmemberaxelriet0:53 20 Nov '05  
GeneralIsolatedStorage PinmemberAndy Smith20:06 28 Apr '02  
GeneralRe: IsolatedStorage PinmemberMichael Mumcuoglu11:59 30 Apr '02  
GeneralRe: IsolatedStorage PinmemberJohn Fairbanks7:34 31 Mar '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
Web02 | 2.5.120517.1 | Last Updated 28 Apr 2002
Article Copyright 2002 by Michael Mumcuoglu
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid