As the title says, how can I recursively copy a directory structure but only include some files. E.g given the following directory structure:
folder1 folde
XCOPY /S folder1\data.zip copy_of_folder1 XCOPY /S folder1\info.txt copy_of_folder1
EDIT: If you want to preserve the empty folders (which, on rereading your post, you seem to) use /E instead of /S.