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

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -