-4
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?

user3218338
  • 101
  • 2
  • 4

1 Answers1

2

Use /mov, as shown in the documentation.

Michael Hampton
  • 237,123
  • 42
  • 477
  • 940