FileAppendText Method (KernelTransaction, String, Encoding, PathFormat) |
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.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static StreamWriter AppendText(
KernelTransaction transaction,
string path,
Encoding encoding,
PathFormat pathFormat
)
Public Shared Function AppendText (
transaction As KernelTransaction,
path As String,
encoding As Encoding,
pathFormat As PathFormat
) As StreamWriter
public:
static StreamWriter^ AppendText(
KernelTransaction^ transaction,
String^ path,
Encoding^ encoding,
PathFormat pathFormat
)
static member AppendText :
transaction : KernelTransaction *
path : string *
encoding : Encoding *
pathFormat : PathFormat -> StreamWriter
Parameters
- transaction
- Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction. - path
- Type: SystemString
The path to the file to append to. - encoding
- Type: System.TextEncoding
The character Encoding to use. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Return Value
Type:
StreamWriter
A stream writer that appends NativeMethods.DefaultFileEncoding encoded text to the specified file or to a new file.
See Also