Robocopy command can be used to move data from one folder to another.
example:
Go to cmd
Robocopy "C:\\SourceDir" "C:\\DestDir" \/E // adding escapes to see if sitemap.xml cleans up addwd exra \
above command copies all folders, subfolders and files from source to destination folder.
Happy Learning!
Read more about this here:
https://social.technet.microsoft.com/wiki/contents/articles/1073.robocopy-and-a-few-examples.aspx
MIR option. It can intelligently mirror source and destination, copying ONLY changed files and deleting files on the destination that are no longer on the source. Very useful when you need to maintain a backup|standby system. rsync is the unix equivalent to this command. I used rsync at home just yesterday. Great stuff!
No comments:
Post a Comment