FileOpenTransacted Method (KernelTransaction, String, FileMode, FileAccess, FileShare, Int32) |
[AlphaFS] (Transacted) Opens a
FileStream on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.
Namespace:
Alphaleonis.Win32.Filesystem
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax public static FileStream OpenTransacted(
KernelTransaction transaction,
string path,
FileMode mode,
FileAccess access,
FileShare share,
int bufferSize
)
Public Shared Function OpenTransacted (
transaction As KernelTransaction,
path As String,
mode As FileMode,
access As FileAccess,
share As FileShare,
bufferSize As Integer
) As FileStream
public:
static FileStream^ OpenTransacted(
KernelTransaction^ transaction,
String^ path,
FileMode mode,
FileAccess access,
FileShare share,
int bufferSize
)
static member OpenTransacted :
transaction : KernelTransaction *
path : string *
mode : FileMode *
access : FileAccess *
share : FileShare *
bufferSize : int -> FileStream
Parameters
- transaction
- Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction. - path
- Type: SystemString
The file to open. - mode
- Type: System.IOFileMode
A constant that determines how to open or create the file. - access
- Type: System.IOFileAccess
A FileAccess value that specifies the operations that can be performed on the
file. - share
- Type: System.IOFileShare
A constant that determines how the file will be shared by processes. - bufferSize
- Type: SystemInt32
A positive Int32 value greater than 0 indicating the buffer size. The
default buffer size is 4096.
Return Value
Type:
FileStream
A
FileStream on the specified path, having the specified mode with read, write, or read/write
access and the specified sharing option.
See Also