Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If only the name element is given a fixed name is used for each export. The prefix and suffix elements describe how to create a filename prefix and/or suffix. The temporaryPrefix is used to generate a prefix for the temporary file as it is being written. After that the file is renamed.

For the prefix there are three options to define the prefix:

  • simpleString, generally used for temporary prefix, but could also be used in the regular prefix. Plain text.
  • currentTimeFormattingString, uses the current time and will add this to the start of the file name based on the provided format. For this you can use basic java time formatting. This also allows use of plain text in between single quotes ('). For example: <currentTimeFormattingString>'test_export_'yyyy-MM-dd HH:mm:ss</currentTimeFormattingString>
  • timeZeroFormattingString <timeZeroFormattingString>'test_export_'yyyy-MM-dd HH</timeZeroFormattingString>

The option useExternalLocationIdAsName (instead of the regular file name) forces the use of the location ID or Name as filename. Note that this option does not work in combination with an idMap that filters the locations to be exported.

...