Click or drag to resize

FileOpen Method (String, FileMode)

Opens a FileStream on the specified path with read/write access.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax
public static FileStream Open(
	string path,
	FileMode mode
)

Parameters

path
Type: SystemString
The file to open.
mode
Type: System.IOFileMode
A FileMode value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.

Return Value

Type: FileStream
A FileStream opened in the specified mode and path, with read/write access and not shared.
See Also