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
|