Skip to content

TSTool / Command / AppendFile


Overview

The AppendFile command appends text to a file. This command is useful for:

  • appending multiple data files into a single file that can be read by TSTool
  • formatting files for use in websites (see also the FormatFile command)

The command appends to a file using either of the following:

  • one or more files can be appended to create a new file or overwrite an input file
  • text can be added to the input file to create a new file or overwrite the input file

The list of input files can be specified using a single pattern or a comma-separated list of patterns, each of which can be specified as:

  • path:
    • absolute path
    • a path relative to the command file folder
  • wildcards:
    • literal path (no wildcards) that exactly matches a file
    • wildcards to match one or more files (see Java PathMatcher):
      • * - match one or more characters at a folder level
      • *.abc - matches file names with extension abc
      • **/*.abc - matches file names with extension abc in any folder

All or only matching lines from input files can be transferred using IncludeText and ExcludeText parameters.

Command Editor

The following dialog is used to edit the command and illustrates the command syntax.

AppendFile

AppendFile Command Editor (see also the full-size image)

Command Syntax

The command syntax is as follows:

AppendFile(Parameter="Value",...)

Command Parameters

Parameter                           Description Default          
InputFile The name of one or more files to append, specified as file patterns separated by commas:
  • No * in filename – match one file
  • *– match all files in input directory (working directory by default).
  • *.ext – match all files with extension

Can specify using processor ${Property}.
Specify file pattern(s) or text to append.
AppendText Text to append to the input file. Specify InputFile or text.
OutputFile
required
The output file that will be created from input. The file is created if it does not exist. If the output file matches an input file, the input file will be overwritten. Use the RemoveFile command to remove the old file. Can specify using processor ${Property}. None – must be specified.
IncludeText A regular expression pattern to include text. Only the matching lines will be included. * can be used as wildcard to match beginning and ending of a string. The * is converted to .* and the pattern uses the Java regular expression syntax. Append all lines.
ExcludeText A regular expression pattern to exclude text. * can be used as wildcard to match beginning and ending of a string. Matching lines will be excluded from the append. Append all lines.
Newline Indicate the newline character to use at the end of lines. Normally the operating system default is ok (\n for Linux and for Mac, \r\n for Windows), but the newline may need to be specified to ensure cross-platform compatibility. Operating system default.
IfNotFound Indicate action if the file is not found, one of:
  • Ignore – ignore the missing file (do not warn).
  • Warn – generate a warning (use this if the file truly is expected and a missing file is a cause for concern).
  • Fail – generate a failure (use this if the file truly is expected and a missing file is a cause for concern).
Warn

The following table lists regular expression examples:

IncludeText Regular Expression         Description
*\Q-\E* Match lines that start with any character, end with any character, and contain a dash. The \Q and \E characters are special characters to start and end a quoted character, and are necessary because the dash has special meaning in a regular expression.

Examples

See the automated tests.

Troubleshooting

See Also