Is there a way to xcopy just changed or new files?

I am trying to deploy a website from my desktop to my webserver and so right now I am doing this:

 xcopy C:\source X:\destination /s

My desktop is a Windows XP machine, and I need to copy to a Windows Server 2008 machine, but this copies everything and the whole site is very large and it takes a really long time to finish copying.

Is there a way to specifically just copy new or updated files? I see you can pass in a changed-since date, but I wanted to see if there is a simpler way to compare against the destination file...

Also, I am open to using anything outside of xcopy that can do the job as well...


From the XCOPY documentation:

/d[:mm-dd-yyyy] : Copies source files changed on or after the specified date only. If you do not include a mm-dd-yyyy value, xcopy copies all Source files that are newer than existing Destination files. This command-line option allows you to update files that have changed.

So, with your example, it should read:

xcopy C:\source X:\destination /s /d

Robocopy is a good alternative as well:

By default Robocopy will only copy a file if the source and destination have different time stamps or different file sizes.

Plus, you can do a lot more - the mirror command is handy for websites where you are deleting files as well.


Use the /A option. All the new or modified files will have archive attribute set.

Check the below link for details:

Xcopy command syntax and examples


There's rsync, but I haven't used in on Windows. The way I normally use it on Linux is:

rsync -avuz src/ remote:dst/

which only sends updates (new and modified files).


I have following task scheduled for ~80k files and ~2k folders:

xcopy \\sourceserver\share\ Q:\backuptarget\folder\ /i /d /y /he /C /EXCLUDE:C:\backup\list.txt > C:\backup\backup.log

the /C option continues the copy even if "access is denied" to file or folder due to it being open or not having permission under service account you run this scheduled task under.

the ">" overwrites the log each time if you want to append you can use ">>" pipe.