If we have a successful build on our build server (CCNET) all ASP.Net website files are copied to the virtual directory (%output_dir%) so non-devs can see/test the latest version of the website. At the end of the build the following bat file is executed.
rmdir /s /q "%output_dir%"
mkdir "%output_dir%"
xcopy "%source_dir%*" "%output_dir%" /e /c /i /q /-y
The problem is I find the copying slow and was wondering if there are any copy commands available in windows 2008 that are faster than xcopy? The source and destination are on the same drive. Below are the arguments we use when copying.
/e = copies directories and sub directories including empty ones.
/c = continues copying even if there are errors
/i = if destination does not exist destination is directory
/q = don't display filenames
/-y = confirm overwrite
