[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Awesome experience with Disc cloning software



PureBytes Links

Trading Reference Links

> xcopy c:\Documents and Settings\BillsPC\Desktop\*.* c:\test\ /d
>
> Is there something special about Documents and Settings directories .... ?

Xcopy has its roots in the DOS 8.3 file naming scheme. You have to put
quotes around long file names to get them to work. Try this.

xcopy "c:\Documents and Settings\BillsPC\Desktop\*.*" c:\test\ /d

--
  Dennis