About this task
You might use the
post-command property
to copy the output files, archive the output files, rename the output
files based on variables, mail the output files, or invoke third party
applications.
Example

To copy the output to a second location, use the following
command:
cmd /c copy ${output_format} D:\path\filename.output_extension
When writing commands as JavaScript, enter
//!JavaScript to
the beginning of the code to use the internal JavaScript engine to
evaluate the commands:
//!JavaScript
var x = output;
var y = variable;
java.lang.System.out.println( "X+Y=" + x + y);
1;