As a part of my backup strategy, I'm using Robocopy to copy files from the Documents directory from a Win 10 laptop to a server.
Normal GUI copy and paste from the Win10 laptop to the destination works fine.
When I run Robocopy, it not only copies the documents, but a lot of files not specifically seen in the documents directory. In particular, all files from the My Pictures and My Music directories.
These directories are distinct directories from the C:\users\<user> tree. ie C:\users\<user>\documents, C:\users\<user>\music and C:\users\<user>\pictures.
This is the Robocopy command:
RoboCopy c:\users\<user>\documents \\<server>\<user> /E /XA:H /R:10 /W:10 /log+:"c:\copylogs.txt"
Is there something weird with the Win10 directory structure that I'm not seeing ?
Should I be using the /MIR instead of /E ?
Cheers
SS