OutputMode enumeration

Specifies (from inside a template) how to deal with generating files that already exist.

Enumeration literals

NameDescription
OverwriteThe output file will be truncated if it exists. This is the default value.
OnceThe output file will not be truncated if it already exists. Use this option if you want to update the file manually once it is generated.
AppendThe template output will be appended to the file if it already exists. The file is created if it does not exist.