Last week, I had a rather simple task – copy a user-folder from an old laptop to a new laptop – preserve folder structure and keep all metadata (such as file-creation date, last edited etc.).
Right-click copy and paste does not fullfill the needs and usually is rather slow, so I tried to use Windows‘ built-in robocopy
.
Doing a quick read over the documentation, I came up withrobocopy C:\SRCDIR D:\DSTDIR /e /dcopy:dat
which I thought would do, what I want – it should copy all files recursively and preserve file attributes and timestamps.
I started the process and expected it to be done after a few minutes – however, the process ran and ran.
The destination directory grew in size, way beyond what it should – according to the size of the source directory.
This prompted me to stop the process and investigate – the source folder was around 5GB, while the destination folder already was over 60GB – what happened?