IsolatedStorageFile.Remove Method
Removes the isolated storage scope and all its contents.
Namespace: System.IO.IsolatedStorage
Assembly: mscorlib (in mscorlib.dll)
| Exception | Condition |
|---|---|
| IsolatedStorageException |
The isolated store cannot be deleted. |
Caution:
|
|---|
|
This method irrevocably removes the entire isolated storage for the current users's application and all its directories and files. |
If any of the directories or files in the store are in use, the removal attempt for the store fails. Any subsequent attempts to modify the store throw an IsolatedStorageException exception. In this case, you must ensure that the files or directories are explicitly deleted.
The following example removes an isolated store. This example is part of a larger example provided for IsolatedStorageFile class.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Caution: