XCOPY in WinXP is like this. Some parameters in lower versions may not be supported, try them yourself:
C:\>help xcopy
Copies files and directory trees.
XCOPY source ] ]
...]
source Specifies the file(s) to copy.
destination Specifies the location and/or name of new files.
/A Copies only files with the archive attribute set,
but does not change the attribute.
/M Copies only files with the archive attribute set,
and turns off the archive attribute.
/D:m-d-y Copies files changed on or after the specified date.
If no date is given, copies only those source files
whose source time is newer than the destination time.
/EXCLUDE:file1...
Specifies a list of files containing strings. If any
string matches part of the absolute path
of the file to be copied,
that file will not be copied.
For example, specifying strings like \obj\ or .obj will exclude
all files under the directory obj or files with
the .obj extension.
/P Prompts before creating each destination file.
/S Copies directories and subdirectories, except empty ones.
/E Copies directories and subdirectories, including empty ones.
Same as /S /E. Can be used to modify /T.
/V Verifies each new file.
/W Prompts you to press a key before copying.
/C Continues copying even if errors occur.
/I If the destination does not exist, and more than one file
is being copied, assumes the destination
must be a directory.
/Q Does not display file names while copying.
/F Displays full source and destination file names while copying.
/L Displays files to be copied.
/G Allows copying unencrypted files to
destinations that do not support encryption.
/H Also copies hidden and system files.
/R Overwrites read-only files.
/T Creates the directory structure, but does not copy files. Does not
include empty directories or subdirectories. /T /E includes
empty directories and subdirectories.
/U Copies only files that already exist in the destination.
/K Copies attributes. Normal Xcopy will reset read-only attributes.
/N Copies using the generated short names.
/O Copies file ownership and ACL information.
/X Copies file audit settings (implies /O).
/Y Suppresses prompting to confirm overwriting
an existing destination file.
/-Y Causes prompting to confirm overwriting
an existing destination file.
/Z Copies network files in restartable mode.
The command-line switch /Y can be preset in the COPYCMD environment variable.
This may be overridden by /-Y on the command line.