XCOPY Wikipedia Article Points out Nice Trick
Been having trouble getting xcopy to copy a single file as it was always prompting if the destination was a file or directory. Seems that robocopy is the tool to use, but the Wikipedia points out a way of scripting the answer out to that xcopy operation. That is: cmd /c echo F | xcopy "c:\directory 1\myfile" "c:\directory 2\myfile"
Comments