Skip to main content

Append file

Anatomy

<file:append filename="string">
string
</file:append>

Description: FILE:APPEND appends content to a file.

If the file does not exist, it will implicitly be created.

Attributes

NameTypeDescriptionDefined By
filenamestringFilename/URL file:append

Examples

Example

<file:write filename="./test/ixml.inc">i</file:write>
<file:append filename="./test/ixml.inc">XML</file:append>

<output>
<file:read filename="./test/ixml.inc"/>
</output>

<!-- iXML -->