I heard that XCopy was a good program. Any feedback would be appreciated.
Others have mentioned XXCOPY, but the standard XCOPY that comes with
all(?) MSDOS/Windows systems is also a good program -- I use it
routinely in small batch files for daily backups etc. to CDRs
(formatted with DirectCD) and, in another case, to a network drive.
The various versions have slightly different features, but the basics
stay pretty much the same.
Open a DOS window (Command Prompt or MS-DOS Prompt, depending on
version of Windows) and type:
XCOPY /?
and you will get a list of the available command line options you can
use with your version.
If the list scrolls off the screen (like mine does in Windows ME) then
you can use redirection to a file which you can then open and read
with any word processor or text editor. (Or even with the old DOS
TYPE command -- but that will also scroll off the screen unless you
pipe the output through MORE -- nothing is simple!) Examples:
XCOPY /? > XC
TYPE XC | MORE
You could also redirect the output to your printer, but it won't eject
the page until it's full, or it gets a form feed character (ASCII 12):
XCOPY /? > PRN
Or, assuming you created the file XC as above, you could say:
TYPE XC > PRN
Cheers, Phred.