Download presentation
Presentation is loading. Please wait.
Published byKeyon Sneller Modified over 9 years ago
1
SIVA PRASAD SANDIREDDY
2
https://www.youtube.com/watch?v=z_8mBA YzdS4
3
WHY ISOLATED STORAGE? INTRODUCTION DATA COMPARTMENT ISOLATED STORAGE TASKS STORES OF ISOLATED STORAGE ANTISPATING OUT OF SPACE CREATING FILES AND DIRECTORIES FINDING EXESTING FILES AND DIRECTORIES READ AND WRITE TO FILES DELETING FILES AND DIRECTORIES System.IO.IsolatedStorage Namespace REFERENCES
4
Many programmers use the config file to keep the application configuration data. It is a read only mechanism. In earlier days,.ini files or registry was used to save application specific data. We can also use ordinary files but security is the major issue.
5
. 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 one has to do is to tell the.NET framework to store files in Isolated Storage. using System.IO; using System.IO.IsolatedStorage; using System.Diagnostics;
6
It is not a specific storage location; it consists of one or more isolated storage files, called stores, which contain the actual directory locations where data is stored. The data saved in the store can be any kind of data, from user preference information to application state. Data compartment is transparent for developer. Stores usually reside on the client but a server application could use isolated stores.
7
Administrators can limit how much isolated storage an application or a user has available, based on an appropriate trust level. To create or access isolated storage, code must be granted the appropriate IsolatedStorageFilePermission.IsolatedStorageFilePermission To access isolated storage, code must have all necessary native platform operating system rights since storage location is different depending on sys operating system.
8
Three main classes are necessary to perform tasks that involve isolated storage: IsolatedStorageFile, which derives from IsolatedStorage, provides basic management of stored assembly and application files IsolatedStorageFileIsolatedStorage IsolatedStorageFileStream, which derives from System.IO.FileStream, provides access to the files in a store. IsolatedStorageFileStreamSystem.IO.FileStream IsolatedStorageScope is an enumeration that enables you to create and select a store with the appropriate isolation type. IsolatedStorageScope
9
A store exposes a virtual file system within a data compartment. To create and retrieve stores, IsolatedStorageFile provides three static method. Methods GetUserStoreForAssembly or GetUse rStoreForDomain retrieve a store.GetUserStoreForAssemblyGetUse rStoreForDomain The GetStore method can be used to specify that a store should roam with a roaming user profile.
10
Enumerating stores : IsolatedStorageFile.GetEnumerator method uses to calculate the size of all isolated storage for the user.IsolatedStorageFile.GetEnumerator You can enumerate all isolated stores for the current user using the IsolatedStorageFile static method GetEnumerator. GetEnumerator takes an IsolatedStorageScope value and returns an IsolatedStorageFile enumerator. User is the only IsolatedStorageScope value supported.IsolatedStorageFileGetEnumeratorIsolatedStorageScope GetEnumerator returns an array ofIsolatedStorageFiles that are defined for the current user.
11
Deleting stores: IsolatedStorageFile.RemoveIsolatedStorageFile.Remove method can be used in two different ways to delete isolated stores. 1) The instance method Remove does not take any arguments and deletes the store that calls it. No permissions are required for this operation.Remove 2) The static method Remove takes the IsolatedStorageScope value User, and deletes all the stores for the user running the code.RemoveIsolatedStorageScope
12
Code that uses isolated storage is constrained by a quota that specifies the maximum size for the data compartment. This value is specified by Administrators.quota If the maximum allowed size is exceeded IsolatedStorageException is thrown and the operation fails. IsolatedStorageException IsolatedStorage.CurrentSize and IsolatedStorage. MaximumSize. These two properties can be used to determine whether writing to the store will cause the maximum allowed size of the store to be exceeded. IsolatedStorage.CurrentSizeIsolatedStorage. MaximumSize
13
To create a directory, CreateDirectory(use)CreateDirectory instance method of IsolatedStorageFile. if you specify a directory name that contains invalid characters, an IsolatedStorageException is generated.IsolatedStorageFileIsolatedStorageException To create and open a file, use the IsolatedStorageFileStream constructors, passing in the file name, the FileMode value OpenOrCreate, and the store in which you want the file created. IsolatedStorageFileStreamFileMode Files are case in sensitive.
14
Using the GetDirectoryNames instance method of IsolatedStorageFile. Both single- character (?) and multi-character (*) wildcard characters are supported. GetDirectoryNamesIsolatedStorageFile To search for a file, use the GetFileNames instance method of IsolatedStorageFile.GetFileNames For example, if there is a match on the directory RootDir/SubDir/SubSubDir, SubSub Dir will be returned in the results array.
15
There are a number of ways to open a file within a store using the IsolatedStorageFileStream class.IsolatedStorageFileStream Once an IsolatedStorageFileStream has been obtained, it can be used to get a StreamReader or StreamWriter. With the StreamReader and StreamWriter, we can read and write to a file in a store as we would to any other fileStreamReaderStreamWriter
16
The IsolatedStoreFile class supplies two instance methods for deleting directories and files, DeleteDirectory and DeleteFile.IsolatedStoreFileDeleteDirectoryDeleteFile AnIsolatedStorageFileException is thrown if you try to delete a file or directory that does not exist.IsolatedStorageFileException If a wildcard character is included in the name, then DeleteDirectory throws an IsolatedStorageFileException while DeleteFile t hrows an ArgumentException.DeleteFileArgumentException DeleteDirectory fails if the directory contains any files or subdirectories.
17
This name space contains 4 classes: IsolatedStorageIsolatedStorage : Represents the abstract base class from which all isolated storage implementations must derive. IsolatedStorageExceptionIsolatedStorageException : The exception that is thrown when an operation in isolated storage fails. IsolatedStorageFileIsolatedStorageFile: Represents an isolated storage area containing files and directories. IsolatedStorageFileStreamIsolatedStorageFileStream : Exposes a file within isolated storage.
18
http://msdn.microsoft.com http://msdn.microsoft.com http://devcity.net/articles/42/1/isolatedstora ge.aspx http://devcity.net/articles/42/1/isolatedstora ge.aspx http://www.codeproject.com/KB/dotnet/Isola tedStorage.aspx http://www.codeproject.com/KB/dotnet/Isola tedStorage.aspx http://msdn.microsoft.com/en- us/library/8dzkff1s(v=VS.80).aspx http://msdn.microsoft.com/en- us/library/8dzkff1s(v=VS.80).aspx
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.