file synchronizing

  • Thread starter Thread starter unclepeteDEL
  • Start date Start date
U

unclepeteDEL

I copied a 23,000 file directory across the network. I got an error
during transfer saying it couldn't copy something unless I ended some
programs. I had no programs running. How can I make sure I got
everything? Even if it would work, I'm not terribly interested in moving
them all (609mb) to a Briefcase.

JimL
 
I copied a 23,000 file directory across the network. I got an error
during transfer saying it couldn't copy something unless I ended some
programs. I had no programs running. How can I make sure I got
everything? Even if it would work, I'm not terribly interested in moving
them all (609mb) to a Briefcase.

JimL

Open the source and destination folders in My Computer or Windows
Explorer and enable the Status Bar (View > Status Bar). It will show
you how many files each folder contains.

If anything is missing, I'd do the copy again, using "xcopy" in a
command prompt window:

xcopy source destination /E /C /H /Y /Z

For a description of the command and its options, type:

xcopy /?

The "/C" option tells it to continue even if errors occur, so you'll
get all of the files that can be copied.
--
Best Wishes,
Steve Winograd, MS-MVP (Windows Networking)

Please post any reply as a follow-up message in the news group
for everyone to see. I'm sorry, but I don't answer questions
addressed directly to me in E-mail or news groups.

Microsoft Most Valuable Professional Program
http://mvp.support.microsoft.com
 
In <[email protected]>, on 02/03/07
at 04:08 PM, "Steve Winograd [MVP]" <[email protected]> said:

If anything is missing, I'd do the copy again, using "xcopy" in a command
prompt window:
xcopy source destination /E /C /H /Y /Z


Thanks.

Is there a way to save various xcopy combinations (separately) for minor
backup purposes? That is, to do jobs without resort to a command line? I
think the word "script" may apply, but I'm just guessing.
 
In <[email protected]>, on 02/03/07
at 04:08 PM, "Steve Winograd [MVP]" <[email protected]> said:



Thanks.

Is there a way to save various xcopy combinations (separately) for minor
backup purposes? That is, to do jobs without resort to a command line? I
think the word "script" may apply, but I'm just guessing.

You can save the xcopy command in a .bat file.
--
Best Wishes,
Steve Winograd, MS-MVP (Windows Networking)

Please post any reply as a follow-up message in the news group
for everyone to see. I'm sorry, but I don't answer questions
addressed directly to me in E-mail or news groups.

Microsoft Most Valuable Professional Program
http://mvp.support.microsoft.com
 
Back
Top