0

I want to make a backup copy of an entire drive to a folder in an external drive but robocopy doesn't "see" the specified destination folder.

The idea is to update all the files and add the new ones in the J drive every time I run this command. So the result will be a clone of the D drive at that moment.

What I'm doing wrong?

robocopy "D:\" "J:\2Tera" /copy:datso /mir /fft /r:0 /w:0 /secfix /mt:20 /xo /xf thumbs.db /log+:J:\TON-FS4.log /nc /ns /np /ndl /nfl /tee

Also, Do I need to add /b switch?

A couple of folder are windows backup folders in that drive.(D:)

2
  • Does robocopy "D:\" work? Notice the backslash. Commented May 14, 2022 at 19:11
  • @UnhandledExcepSean It seems like robocopy "sees" D:\" J:\2Tera"\ as source folder
    – E_Blue
    Commented May 14, 2022 at 20:12

1 Answer 1

0

Quotation marks are not needed.

3
  • This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. - From Review
    – Ramhound
    Commented May 15, 2022 at 0:06
  • Why not? If he take the quotations it works.
    – E_Blue
    Commented May 17, 2022 at 16:43
  • Removing quotes worked for me. Lucky I don't have spaces in my paths.
    – flobadob
    Commented Jun 3 at 12:27

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .