This functionality is only available for certain module packages.

Engineering.CopyFileCommand

Copies a file or a folder to the specified target.

  1. A file or a folder with the specified name is copied to the specified target.
  2. Argument Type Description
    source String Absolute file or folder name of the copy source.
    destination String Absolute file or folder name of the copy target.
  3. A file or a folder with the specified name is copied to the specified target. If the value for the argument overwrite is true, a copy target of the same name is overwritten without any query.
  4. Argument Type Description
    source String Absolute file or folder name of the copy source.
    destination String Absolute file or folder name of the copy target.
    overwrite Boolean Option whether a target with the same name is to be overwritten.
  5. A list of files or folders is copied to the specified target.
  6. Argument Type Description
    sources List List of file or folder names of the copy source.
    destination String Absolute file or folder name of the copy target.
  7. A list of files or folders is copied to the specified target. If the value for the argument overwrite is true, a copy target of the same name is overwritten without any query.
  8. Argument Type Description
    sources List List of file or folder names of the copy source.
    destination String Absolute file or folder name of the copy target.
    overwrite Boolean Option whether a target with the same name is to be overwritten.