Skip to main content

$appendFile

This function appends the specified content to the given file.

Parameters

ParameterDescription
filePath to the file to append content to.
contentContent to append to the file.

Example

<AoiClient>.addCommand({
name: "misc",
code: `
$appendFile[path/to/file.txt; This is some content.]
`,
});