I am trying to copy a folder from one directory to another in the CMD in Windows 7.
I have found commands for copying individual files:
copy test.txt "C:\NewLocation"
Which works fine. However trying something like this:
copy "C:\Test" "C:\NewLocation"
doesn't work. It wants to take the contents of the directory and move them over. Is there anyway to copy the FOLDER and move it as opposed to the entire directory contents?
Thanks.