Versions Compared

Key

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

...

Code Block
languagebash
[local_2_local_create_md5]
;;
 operation                 = copy
 file_spec                 = ^test_[0-9]\.txt$
;;
 CreateSecurityHashFile    create_security_hash_file = true
;;
 source_host               = localhost
 source_protocol           = local
 source_dir                = ${USERPROFILE}\jade_demo\a
;;
 target_host               = localhost
 target_protocol           = local
 target_dir                = ${USERPROFILE}\jade_demo\b

...

  • Save the MD5 hash for each 'original' file it finds matching the file_spec parameter regex in the source directory in a temporary file.
  • Transfer the 'original' files to the target directory.
  • Copy Move the files containing the MD5 hash tags to the target directory after transfer of the 'main' files has been completed.
    An MD5 file corresponding to a file test_1.txt would carry the name test_1.txt.MD5.

...

Code Block
languagebash
[local_2_local_check_md5]
;;
 operation                 = copy
 file_spec                 = ^test_[0-9]\.txt$
;;
 CheckSecurityHash  check_security_hash       = true
;;
 source_host               = localhost
 source_protocol           = local
 source_dir                = ${USERPROFILE}\jade_demo\b
;;
 target_host               = localhost
 target_protocol           = local
 target_dir                = ${USERPROFILE}\jade_demo\b\checked

...