Windows copy


windows bootstrap hugo

Windows copy methods

  1. xxcopy:

clone and copy using the data size and ignore timestamp

xxcopy g:\source d:\dest /clone /BZX
  1. robocopy:

mirror copy using data size and timestamp. Will delete data in dest which is not in source

robocopy g:\source d:\dest /r:2 /w:5 /mir

copy using data size and timestamp and ignore older

robocopy g:\source d:\dest /r:2 /w:5 /xo /e /tee