I have the following line in a bat file:
xcopy script_temp\* \\CHU-Computer-Science\CHU\scripts\ /S /E /H
however, this will only copy files, how can i also have it copy the folder?
|
I have the following line in a bat file:
however, this will only copy files, how can i also have it copy the folder?
| |||||
feedback
|
|
The options you used copied empty folders for me on Vista. I don't know if there are differences in versions of Windows. The /S and /E are mutually exclusive. /E copies subfolders, including empty ones. /S copies subfolders but ignores empty ones. I thought that the last option specified wins, so the command you used should work. You could try eliminating the /S option and see if that helps on your system. Or possibly I don't understand your question? | |||
feedback
|