IsolatedStorageFile.OpenFile Method (String, FileMode)
Opens a file in the specified mode.
Assembly: mscorlib (in mscorlib.dll)
[ComVisibleAttribute(false)] public IsolatedStorageFileStream OpenFile( string path, FileMode mode )
Parameters
- path
- Type: System.String
The relative path of the file within the isolated store.
- mode
- Type: System.IO.FileMode
One of the enumeration values that specifies how 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.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.