Move files with robocopy instead of copy [closed]

robocopy B:\Foo\ D:\890001 /MIR /COPY:DT /FFT

Am using the above to copy files from A to B, however I wish to move the file not copy. How can this be done without its function being compromised?

Answer

Use /mov, as shown in the documentation.

Attribution
Source : Link , Question Author : user3218338 , Answer Author : Michael Hampton

Leave a Comment