Click or drag to resize

FileOpenReadTransacted Method (KernelTransaction, String)

[AlphaFS] Opens an existing file for reading.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax
public static FileStream OpenReadTransacted(
	KernelTransaction transaction,
	string path
)

Parameters

transaction
Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction.
path
Type: SystemString
The file to be opened for reading.

Return Value

Type: FileStream
A read-only FileStream on the specified path.
Remarks
This method is equivalent to the FileStream(string, FileMode, FileAccess, FileShare) constructor overload with a FileMode value of Open, a FileAccess value of Read and a FileShare value of Read.
See Also