IsolatedStorageFileOpenFile Method (String, FileMode) |
Opens a file in the specified mode.
Namespace: System.IO.IsolatedStorageAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public IsolatedStorageFileStream OpenFile(
string path,
FileMode mode
)
Parameters
- path
- Type: SystemString
The relative path of the file within the isolated store. - mode
- Type: System.IOFileMode
One of the enumeration values that specifies how to open the file.
Return Value
Type:
IsolatedStorageFileStreamA file that is opened in the specified mode, with read/write access, and is unshared.
Exceptions 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. |
See Also