recursion - Using xcopy to copy multiple files/directories, some of which have spaces -
i'm trying use xcopy copy on several files , directories onto external hard drive. following command works fine...
xcopy d:\location\folder /e ... except it's not copying on files/directories withing d:/location/folder have spaces. understand dos requires file names spaces need enclosed in quotes, do if i'm trying huge recursive copy there may several files or folders spaces in name?
use quotes:
xcopy "d:\location\folder" /e
Comments
Post a Comment