Click or drag to resize

FileAppendTextTransacted Method (KernelTransaction, String)

Creates a StreamWriter that appends NativeMethods.DefaultFileEncoding encoded text to an existing file, or to a new file if the specified file does not exist.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax
public static StreamWriter AppendTextTransacted(
	KernelTransaction transaction,
	string path
)

Parameters

transaction
Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction.
path
Type: SystemString
The path to the file to append to.

Return Value

Type: StreamWriter
A stream writer that appends NativeMethods.DefaultFileEncoding encoded text to the specified file or to a new file.
See Also