IsolatedStorageFile.OpenFile Method (String, FileMode)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Opens a file in the specified mode.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- path
- Type: System.String
The relative path of the file within the isolated store.
- mode
- Type: System.IO.FileMode
The mode in which to open the file.
Return Value
Type: System.IO.IsolatedStorage.IsolatedStorageFileStreamA file that is opened in the specified mode, with read/write access, and is unshared.
| Exception | Condition |
|---|---|
| IsolatedStorageException | The isolated store has been removed. -or- Isolated storage is disabled. |
| ArgumentException | path is malformed. |
| ArgumentNullException | path is null. |
| DirectoryNotFoundException | The directory in path does not exist. |
| FileNotFoundException | No file was found and the mode is set to Open. |
| ObjectDisposedException | The isolated store has been disposed. |
This method is equivalent to using the IsolatedStorageFileStream.IsolatedStorageFileStream(String, FileMode, IsolatedStorageFile) constructor.