robocopy /create not working!?

  • Thread starter Thread starter alex
  • Start date Start date
A

alex

hi

i'd like to create a very big directory structure first befor starting the
main copy process. but this /create with seems not working!?

i tested several ways. for e.g.:

robocopy D:\Inetpub \\Server1\d$\InetPub /create
robocopy D:\Inetpub \\Server1\d$\InetPub /create /e

someone able to help? everytime i execute this - the copy themself start's!

Regards
Alex
 
i'd like to create a very big directory structure first befor starting the
main copy process. but this /create with seems not working!?

i tested several ways. for e.g.:

robocopy D:\Inetpub \\Server1\d$\InetPub /create

This will not include sub-directories.
robocopy D:\Inetpub \\Server1\d$\InetPub /create /e

This works here.
someone able to help? everytime i execute this - the copy themself start's!

As documented, ROBOCOPY /CREATE will create the directory structure and
zero-length files as place holders. The log output doesn't reflect that
properly, showing each file as if it were actually copied. Check your
destination directory and you should find zero-length palce holder files
there.
 
hi
As documented, ROBOCOPY /CREATE will create the directory structure and
zero-length files as place holders. The log output doesn't reflect that
properly, showing each file as if it were actually copied. Check your
destination directory and you should find zero-length palce holder files
there.

retested and reviewed... ok. it creates the complete files with 0 bytes...
this take a long time :-(

45GB and 900.000 files...


Greetings
Alex
 
Back
Top