FileAppendTextTransacted Method (KernelTransaction, String, Encoding) |
[AlphaFS] Creates a
StreamWriter that appends UTF-8 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.2
Syntax public static StreamWriter AppendTextTransacted(
KernelTransaction transaction,
string path,
Encoding encoding
)
Public Shared Function AppendTextTransacted (
transaction As KernelTransaction,
path As String,
encoding As Encoding
) As StreamWriter
public:
static StreamWriter^ AppendTextTransacted(
KernelTransaction^ transaction,
String^ path,
Encoding^ encoding
)
static member AppendTextTransacted :
transaction : KernelTransaction *
path : string *
encoding : Encoding -> 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.
Return Value
Type:
StreamWriterA stream writer that appends UTF-8 encoded text to the specified file or to a new file.
Exceptions See Also