Click or drag to resize
IsolatedStorageFileOpenFile Method (String, FileMode, FileAccess)
Opens a file in the specified mode with the specified read/write access.

Namespace: System.IO.IsolatedStorage
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public IsolatedStorageFileStream OpenFile(
	string path,
	FileMode mode,
	FileAccess access
)

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.
access
Type: System.IOFileAccess
One of the enumeration values that specifies whether the file will be opened with read, write, or read/write access.

Return Value

Type: IsolatedStorageFileStream
A file that is opened in the specified mode and access, and is unshared.
Exceptions
ExceptionCondition
IsolatedStorageExceptionThe isolated store has been removed. -or-Isolated storage is disabled.
ArgumentExceptionpath is malformed.
ArgumentNullExceptionpath is null.
DirectoryNotFoundExceptionThe directory in path does not exist.
FileNotFoundExceptionNo file was found and the mode is set to Open.
ObjectDisposedExceptionThe isolated store has been disposed.
See Also