When I type copy*.* A:\ it ONLY copies the files. How do I also copy the
DIRECTORIES so that I have an exact copy of the C partition?
Diskcopy command doesn't work either.
Any ideas?
Try XCOPY. For help with the syntax of the XCOPY command
use the /? switch to find out what switches are supported on
your Operating System. For example, in Windows 95/98/ME
this is a typical command line to do what you ask:
xcopy C:\*.* A:\*.* /s /e /y /h /c
/s = include Subfolders, creating them as needed
/e = include Empty subfolders, creating them as needed
/y = Yes, overwrite any same-name existing files
/h = include Hidden/system files
/c = continue on errors (file in use, etc)
--
(pp) William Allen
"pcmdc" <pc...@bigfoot.com> wrote in message
news:oOZ%8.16391$Og3.3...@e3500-atl1.usenetserver.com...