FileAppendAllText Method (KernelTransaction, String, String, PathFormat) |
[AlphaFS] Appends the specified stringto 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,
PathFormat pathFormat
)
Public Shared Sub AppendAllText (
transaction As KernelTransaction,
path As String,
contents As String,
pathFormat As PathFormat
)
public:
static void AppendAllText(
KernelTransaction^ transaction,
String^ path,
String^ contents,
PathFormat pathFormat
)
static member AppendAllText :
transaction : KernelTransaction *
path : string *
contents : string *
pathFormat : PathFormat -> 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. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Exceptions See Also