Click here to Skip to main content
Click here to Skip to main content

Isolated Storage in .NET to store application data

By , 26 Mar 2004
 

Introduction

Many programmers use the config file to keep the application configuration data. But one disadvantage with this is, it is a read only mechanism. You cannot update data in application config files, using the ConfigurationSettings classes in .NET. In earlier days, .ini files or registry was used to save application specific data.

Of course, we can use regular files to save application data. But now the question is how to protect the data, where to save it and all other mess!

Isolated Storage

.NET introduces a concept called Isolated Storage. Isolated Storage is a kind of virtual folder. Users never need to know where exactly the file is stored. All you do is, tell the .NET framework to store your file in Isolated Storage. The physical location of Isolated Storage varies for each Operating System. But your application simply uses the .NET classes to create and access files, without bothering where it is physically located. And you can have Isolated Storage specific to each Assembly or each Windows user.

The following code sample demonstrates the basic create, write and read operations with Isolated Storage.

Make sure you include the following directives on top of your file:

using System.IO;
using System.IO.IsolatedStorage;
using System.Diagnostics;

Code sample:

const string ISOLATED_FILE_NAME = "MyIsolatedFile.txt";

//-------------------------------------------------------

// Check if the file already exists in isolated storage.

//-------------------------------------------------------

IsolatedStorageFile isoStore = 
  IsolatedStorageFile.GetStore( IsolatedStorageScope.User 
  | IsolatedStorageScope.Assembly, null, null );

string[] fileNames = isoStore.GetFileNames( ISOLATED_FILE_NAME );

foreach ( string file in fileNames )
{
    if ( file == ISOLATED_FILE_NAME )
    {
       Debug.WriteLine("The file already exists!");
    }
}

//-------------------------------------------------------

// Write some text into the file in isolated storage.

//-------------------------------------------------------

IsolatedStorageFileStream oStream = 
  new IsolatedStorageFileStream( ISOLATED_FILE_NAME, 
  FileMode.Create, isoStore );

StreamWriter writer = new StreamWriter( oStream );
writer.WriteLine( "This is my first line in the isolated storage file." );
writer.WriteLine( "This is second line." );
writer.Close();

//-------------------------------------------------------

// Read all lines from the file in isolated storage.

//-------------------------------------------------------

IsolatedStorageFileStream iStream = 
  new IsolatedStorageFileStream( ISOLATED_FILE_NAME, 
  FileMode.Open, isoStore );

StreamReader reader = new StreamReader( iStream );
String line;

while ( (line = reader.ReadLine()) != null )
{
    Debug.WriteLine( line );
}

reader.Close();

Visit here to read my C# Tutorial collection.

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

T Manjaly
Web Developer
India India
Member
Tony is a seasoned .NET developer who recently switched his focus to Windows 8 and SEO. You may visit his technology websites: www.dotnetspider.com and www.techulator.com.

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberYPD26 Dec '11 - 1:37 
GeneralMy vote of 1memberPetoj8720 Dec '09 - 9:18 
GeneralRe: My vote of 1memberMember 803644630 Jan '12 - 8:29 
GeneralCorrect me if im wrongmemberPetoj8714 Dec '09 - 11:57 
GeneralRe: Correct me if im wrongmemberThesisus7 Jun '11 - 10:27 
Answerwriting to config filesmembergandalf12319 Mar '09 - 9:18 
GeneralMy vote of 1memberDZaK8328 Jan '09 - 12:46 
GeneralRe: My vote of 1memberJark8 Oct '09 - 23:04 
Question.config filesmemberrubicon_hfr25 Jun '08 - 1:33 
QuestionCan I use IsolatedStorage with asp.net?memberMember 42592871 Feb '08 - 3:47 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 27 Mar 2004
Article Copyright 2004 by T Manjaly
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid