I need to recursively copy a set of files using a batch (DOS) script, maintaining the original directory structure. Sounds easy, right? Here are the complications:
- xcopy is not available on the server I will be using the batch script on. Therefore, I have to use the copy command.
- A thorough Internet search of this topic only leads to the use of xcopy, or some specialized use of the script (this is just a generic copy/paste job).
- I have not written in DOS since the 90's.
How do I get the copy command to save to a new directory with the same name/location as the old one?