Click here to Skip to main content
Licence 
First Posted 26 Mar 2004
Views 101,576
Bookmarked 37 times

Isolated Storage in .NET to store application data

By | 26 Mar 2004 | Article
This sample demonstrates using the Isolated Storage to save and retrieve application data in .NET applications.

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

United States United States

Member



See my C# Tutorials for beginners and offshore software development at www.dotnetspider.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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberYPD1:37 26 Dec '11  
GeneralMy vote of 1 PinmemberPetoj879:18 20 Dec '09  
GeneralRe: My vote of 1 PinmemberMember 80364468:29 30 Jan '12  
GeneralCorrect me if im wrong PinmemberPetoj8711:57 14 Dec '09  
GeneralRe: Correct me if im wrong PinmemberThesisus10:27 7 Jun '11  
Answerwriting to config files Pinmembergandalf1239:18 19 Mar '09  
GeneralMy vote of 1 PinmemberDZaK8312:46 28 Jan '09  
GeneralRe: My vote of 1 PinmemberJark23:04 8 Oct '09  
Question.config files Pinmemberrubicon_hfr1:33 25 Jun '08  
QuestionCan I use IsolatedStorage with asp.net? PinmemberMember 42592873:47 1 Feb '08  
QuestionHow do I locate the file in the file system? PinmemberGrey|Pixels6:05 25 Jan '07  
AnswerRe: How do I locate the file in the file system? [modified] Pinmemberrubicon_hfr1:28 25 Jun '08  
GeneralRe: How do I locate the file in the file system? PinmemberMSaty0:25 11 Aug '08  
GeneralRe: How do I locate the file in the file system? Pinmemberhfrmobile1:05 11 Aug '08  
GeneralRe: How do I locate the file in the file system? Pinmembercerberiukas21:36 21 Dec '08  

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
Web04 | 2.5.120517.1 | Last Updated 27 Mar 2004
Article Copyright 2004 by T Manjaly
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid