Diagram

Elements

Directives
References Notes

Directives are options that specify the behavior with specific file characteristics:

  • DisableErrorOnNoFilesFound: do not raise an error if no files are found on the source server
  • TransferZeroByteFiles: specify whether zero byte files should be transferred and processed by subsequent commands
Element Type Required Description
DisableErrorOnNoFilesFound boolean
  • Whitespace: collapse
  • Occurrence: 0..1
Optional
References Notes

This parameter specifies whether an error should be raised if no files can be found for transfer.

  • By default an error will be reported if no files are found on the source system which corresponds to the value "false".
  • No errors will be reported if no files are found and this parameter is set to "true".

The number of files to transfer is determined by the FileSpec, FilePath or FileList parameters.

This parameter does not affect the DisableOverwriteFiles parameter if no files are found that can be overwritten.

TransferZeroByteFiles string
  • Whitespace: preserve
  • Enumeration:
    • true
    • false
    • strict
    • relaxed
  • Occurrence: 0..1
Optional
References Notes

This parameter specifies whether zero byte files should be transferred and processed by subsequent commands.

The following settings are available:

  • "true": files with zero byte size are transferred (default).
  • "false": files with zero byte size are transferred if at least one of the selected files is more than zero byte in size.
  • "strict": files with zero byte size will not be transferred. An error will be raised if any zero byte file is found.
  • "relaxed": files with zero byte size will not be transferred. However, no error will be raised if this results in no files being transferred.

Notes

  • Note that the Remove operation has unrestricted validity.
    • Files with zero byte size will be removed regardless of whether or not they have been transferred.

 

  • No labels