• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

File copy utility

dmurray14

Golden Member
I need to find a file copy utility that will let me copy files without quitting on errors. In windows, if I try to copy a big directory and one of the files has an error, the whole copy stops. I need something that will allow me to just ignore the error. Anyone?

Thanks,
Dan
 
xcopy

Included with windows. Start -> run -> cmd -> xcopy /? to get a list of the options, one of them is to continue on after errors.

Something like:

xcopy /E /V /C /I /Q /H /K /Y <source> <destination>

Should do the trick
 
Back
Top