It’s a one type of file system provided by .net framework. Isolated storage provides protection on the user, by application domain, assembly that is not provided by the standard file system.
To Use Isolated storage we need to import System.IO.IsolatedStorage namespace. It provides the required classes for Isolated Storage.
You can create the Isolated Storage file by creating instance of IsolatedStorageFileStream class. Pass the name of your file name in the constructor. You will also find different overloaded constructor in it.
Now one common question arise in mind , Where does the file store in our file system? Because we don’t see in the our application’s folder or anywhere…
You can check that file created in the below location..
Go to your root directory from where operation system is loaded (Simply operating system is installed)
Yes now firstly from tools check to see hidden files and system files because isolated storage is hidden.
Click on the Documents and Settings, this folder contains the various users on the computer and some of the services folder all these can be viewed if you have selected to show hidden files.
No comments:
Post a Comment