CurrentSize and Scope : IsolatedStorageFile « File Stream « C# / C Sharp






CurrentSize and Scope

   

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

class MainClass {
    static void Main(string[] args) {
        using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForAssembly()) {
            store.CreateDirectory("MyFolder");

            using (Stream fs = new IsolatedStorageFileStream("MyFile.txt", FileMode.Create, store)) {
                StreamWriter w = new StreamWriter(fs);
                w.WriteLine("Test");
                w.Flush();
            }

            Console.WriteLine("Current size: " + store.CurrentSize.ToString());
            Console.WriteLine("Scope: " + store.Scope.ToString());

            Console.WriteLine("Contained files include:");
            string[] files = store.GetFileNames("*.*");
            foreach (string file in files) {
                Console.WriteLine(file);
            }
        }

    }
}

   
    
  








Related examples in the same category

1.GetFileNames, CreateDirectory, GetUserStoreForAssembly
2.IsolatedStorageFile represents an isolated storage area containing files and directories.
3.Isolated Storage File Stream form input and output