Click or drag to resize
FileOpen Method (KernelTransaction, String, FileMode, FileAccess, PathFormat)
[AlphaFS] Opens a FileStream on the specified path, with the specified mode and access.

Namespace: Alphaleonis.Win32.Filesystem
Assembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax
public static FileStream Open(
	KernelTransaction transaction,
	string path,
	FileMode mode,
	FileAccess access,
	PathFormat pathFormat
)

Parameters

transaction
Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction.
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.
access
Type: System.IOFileAccess
A FileAccess value that specifies the operations that can be performed on the file.
pathFormat
Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).

Return Value

Type: FileStream
An unshared FileStream that provides access to the specified file, with the specified mode and access.
See Also