Re: How to copy recursive files in Windows? like unix cp -r

2003-10-09 Thread bulbultyagi
xcopy /e /h source destn - Original Message - To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED] Sent: Thursday, October 09, 2003 00:29 Hi List: How to copy recursive files in Windows? like unix cp -r Thanks in advance, Sami __ Do

RE: How to copy recursive files in Windows? like unix cp -r

2003-10-08 Thread Jamadagni, Rajendra
Title: RE: How to copy recursive files in Windows? like unix cp -r xcopy /s -- copies recursively if sub-dir is not empty xcopy /e -- everything including empty. Raj Rajendra dot Jamadagni at nospamespn dot com

RE: How to copy recursive files in Windows? like unix cp -r

2003-10-08 Thread Rothouse, Michael
xcopy /e source destination Example: xcopy /e c:\temp e:\ -Original Message- Sent: Wednesday, October 08, 2003 2:59 PM To: Multiple recipients of list ORACLE-L Hi List: How to copy recursive files in Windows? like unix cp -r Thanks in advance, Sami

RE: How to copy recursive files in Windows? like unix cp -r

2003-10-08 Thread Khedr, Waleed
xcopy -Original Message- Sent: Wednesday, October 08, 2003 2:59 PM To: Multiple recipients of list ORACLE-L Hi List: How to copy recursive files in Windows? like unix cp -r Thanks in advance, Sami __ Do you Yahoo!? The New Yahoo! Shopping - with

Re: How to copy recursive files in Windows? like unix cp -r

2003-10-08 Thread Wolfgang Breitling
use xcopy /S or /E C:\help xcopy Copies files and directory trees. XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/V] [/W] [/C] [/I] [/Q] [/F] [/L] [/H] [/R] [/T] [/U] [/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z]

RE: How to copy recursive files in Windows? like UNIX cp -r

2003-10-08 Thread Bob Metelsky
For stubborn files, or if an error occurs during the copy, this uses the /c switch FOR /d %a in (G:\some\location\*) do xcopy *.* /s /c H:\someother\location This essentially forces the xcopy through the source directory, sometimes useful for copying off of cds where the data can be temporarily