FileAppendAllText Method (KernelTransaction, String, String, Encoding) |
[AlphaFS] Appends the specified string to the file, creating the file if it does not already exist.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static void AppendAllText(
KernelTransaction transaction,
string path,
string contents,
Encoding encoding
)
Public Shared Sub AppendAllText (
transaction As KernelTransaction,
path As String,
contents As String,
encoding As Encoding
)
public:
static void AppendAllText(
KernelTransaction^ transaction,
String^ path,
String^ contents,
Encoding^ encoding
)
static member AppendAllText :
transaction : KernelTransaction *
path : string *
contents : string *
encoding : Encoding -> unit
Parameters
- transaction
- Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction. - path
- Type: SystemString
The file to append the specified string to. - contents
- Type: SystemString
The string to append to the file. - encoding
- Type: System.TextEncoding
The character Encoding to use.
Exceptions See Also