Read text in From IsolatedStorage in CSharp

Description

The following code shows how to read text in From IsolatedStorage.

Example


/*from  w w w .  jav  a  2 s  . c o m*/

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

  class MainClass
  {
    static void Main(string[] args)
    {
      using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForAssembly())
      {
        using (IsolatedStorageFileStream isStream = new IsolatedStorageFileStream("MyData.txt", FileMode.Open,FileAccess.Read, store))
        {
          using (StreamReader sr = new StreamReader(isStream))
          {
            string allTheData = sr.ReadToEnd();
            Console.WriteLine(allTheData);
          }
        }
      }
    }
  }

The code above generates the following result.





















Home »
  C# Tutorial »
    IO »




File Attribute
File Security
Directory Attribute
Directory Recursive
Binary File
Text Field
Buffered IO
Create Copy Delete Move
CSV
Drive
File System Watcher
Isolated Storage
MemoryStream
Serialize
Zip