PC Review


Reply
Thread Tools Rate Thread

Copying files to 2nd PC in workgroup, process stopped in the middle

 
 
jinnii
Guest
Posts: n/a
 
      28th Feb 2006
Good day...

(I hope the network_web NG is the correct forum for this question, if
not my apologies)

In trying to clean out an old work laptop, I attempted to copy the
contents of a folder (with sub-folders) to a new PC on our well tuned
workgroup network (with thanks to Chuck). I opened both containing
folders from the new PC (250G HD, dual core processor running Win MCE
2005) and dragged and dropped the folder from old to new. The folder
had about 23,000 mixed files, totaling close to 16 GB.

It worked away all night, and by morning was a bit more than half way
through, but everything seemed to be fine. I just took a look now and
there was an error message stating one particular file (old photo,
didn't matter anyway) could not be copied and the process stopped. The
items that were copied successfully look fine, but I wondered if:

a) there is a way to compare the two folders and determine which had
not yet been copied over so that I could do so in smaller batches if
necessary, and

b) (for future reference) is there a way to allow a particular file to
be ignored or addressed individually and yet let the copy process
continue?

Thank you in advance,

JK

 
Reply With Quote
 
 
 
 
Chuck
Guest
Posts: n/a
 
      28th Feb 2006
On 28 Feb 2006 10:27:06 -0800, "jinnii" <(E-Mail Removed)> wrote:

>Good day...
>
>(I hope the network_web NG is the correct forum for this question, if
>not my apologies)
>
>In trying to clean out an old work laptop, I attempted to copy the
>contents of a folder (with sub-folders) to a new PC on our well tuned
>workgroup network (with thanks to Chuck). I opened both containing
>folders from the new PC (250G HD, dual core processor running Win MCE
>2005) and dragged and dropped the folder from old to new. The folder
>had about 23,000 mixed files, totaling close to 16 GB.
>
>It worked away all night, and by morning was a bit more than half way
>through, but everything seemed to be fine. I just took a look now and
>there was an error message stating one particular file (old photo,
>didn't matter anyway) could not be copied and the process stopped. The
>items that were copied successfully look fine, but I wondered if:
>
> a) there is a way to compare the two folders and determine which had
>not yet been copied over so that I could do so in smaller batches if
>necessary, and
>
> b) (for future reference) is there a way to allow a particular file to
>be ignored or addressed individually and yet let the copy process
>continue?


Jinnii,

For a large copy like that, I would use the batch command "xcopy". Drag and
drop is useful for quick jobs, but the extra effort required by xcopy is well
worth the learning curve.

Getting xcopy to do multiple levels of subdirectories will take experimentation.
My recommendation (read thru this and ask questions please):
# Setup a test set of folders and files - say maybe a couple dozen files, in a
dozen folders, arranged in a hierarchy of 3 or 4 levels of folders. This lets
you see how effective xcopy is, when using the various switches.
# Run xcopy from a command window. First, do "xcopy /?", which will give you a
long and detailed list of all of the switches.
# The "/c" switch, for instance, will fulfill your second requirement -
"Continues copying even if errors occur.".
# When I do xcopy, I start my source (the local computer, where the files are)
and my object (the distant computer, to where you are copying the files) at the
root of the folders involved in the copy (where you dragged from, and where you
dropped into).
# Open a command window.
# "cd \RootOfSourceFolders".
# "net use x: \\ObjectServer\ObjectShare".
# "x:"
# If the folders being copied do not start in the root of the share just mapped,
"cd \RootOfObjectFolders". With the current position in the mapped drive now
starting at the root of your target, return your focus to your source drive.
# "c:"
# Then start the copy "xcopy c: x: /c /e /y" and let it run.
# The switches: "/c" continues copying if any errors, "/e" copies folders,
including empty ones, "/y" overwrites any duplicates. You may find other
switches useful too.

I am sure that this is all Greek to you. It was to me the first time I used it,
and I still have to reread the "/?" reference occasionally. But trust me, an
xcopy will go hella faster than drag and drop, and for large copies like yours,
is well worth the extra learning time.

--
Cheers,
Chuck, MS-MVP [Windows - Networking]
http://nitecruzr.blogspot.com/
Paranoia is not a problem, when it's a normal response from experience.
My email is AT DOT
actual address pchuck mvps org.
 
Reply With Quote
 
jinnii
Guest
Posts: n/a
 
      28th Feb 2006
Good heavens, do you not sleep?

I will certainly read through and make an attempt at your suggestions.
Meanwhile, I found references to several utilities that would at least
allow me to compare the two for now; CompTree and CompFold, but I have
not tried either yet. Have you heard of them? I will play with xcopy
first just to see what I am up against. Thanks!

Back later...

 
Reply With Quote
 
Chuck
Guest
Posts: n/a
 
      28th Feb 2006
On 28 Feb 2006 11:06:42 -0800, "jinnii" <(E-Mail Removed)> wrote:

>Good heavens, do you not sleep?
>
>I will certainly read through and make an attempt at your suggestions.
>Meanwhile, I found references to several utilities that would at least
>allow me to compare the two for now; CompTree and CompFold, but I have
>not tried either yet. Have you heard of them? I will play with xcopy
>first just to see what I am up against. Thanks!
>
>Back later...


Hi Jinnii,

I've played with several mirroring and mirror comparison software solutions, I
don't recognise either of these though.

The amount of information returned, when analysing an out of synch mirror, can
be immense. I frequently find it best to just destroy and repeat the mirror.
For a one time copy, as yours, you might find the same thing, and xcopy is an
efficient solution. Just delete the partial copy (don't send files to the
Recycle Bin!), and start over with xcopy.

--
Cheers,
Chuck, MS-MVP [Windows - Networking]
http://nitecruzr.blogspot.com/
Paranoia is not a problem, when it's a normal response from experience.
My email is AT DOT
actual address pchuck mvps org.
 
Reply With Quote
 
jinnii
Guest
Posts: n/a
 
      28th Feb 2006
Good evening,

I just performed xcopy on test folder with lots of subdirectories and
misc. files (125 total), and it worked beautifully. I wondered though
if it can run for hours at a time (ie: set it up and go to bed leaving
the two computers "always on" for the time). Remember, I have close to
23,000 files to copy. Should I perhaps do it in batches?

In your earlier post you said:
> Just delete the partial copy (don't send files to the Recycle Bin!),
> and start over with xcopy.


How do you delete files without sending them to the bin? I usually
just empty it after deletion.

Thanks, JK

 
Reply With Quote
 
Shenan Stanley
Guest
Posts: n/a
 
      1st Mar 2006
jinnii wrote:
> How do you delete files without sending them to the bin? I usually
> just empty it after deletion.


SHIFT+Delete

--
Shenan Stanley
MS-MVP
--
How To Ask Questions The Smart Way
http://www.catb.org/~esr/faqs/smart-questions.html


 
Reply With Quote
 
Chuck
Guest
Posts: n/a
 
      1st Mar 2006
On 28 Feb 2006 15:59:34 -0800, "jinnii" <(E-Mail Removed)> wrote:

>Good evening,
>
>I just performed xcopy on test folder with lots of subdirectories and
>misc. files (125 total), and it worked beautifully. I wondered though
>if it can run for hours at a time (ie: set it up and go to bed leaving
>the two computers "always on" for the time). Remember, I have close to
>23,000 files to copy. Should I perhaps do it in batches?
>
>In your earlier post you said:
>> Just delete the partial copy (don't send files to the Recycle Bin!),
>> and start over with xcopy.

>
>How do you delete files without sending them to the bin? I usually
>just empty it after deletion.
>
>Thanks, JK


If you can figure how to separate it into batches that's a good idea. Splitting
it sequentially, or stopping and restarting, is not easy though. It depends I
guess upon how comfortable you are starting it over and over. The first time is
probably the hardest, though, and it sounds like you're over that.

--
Cheers,
Chuck, MS-MVP [Windows - Networking]
http://nitecruzr.blogspot.com/
Paranoia is not a problem, when it's a normal response from experience.
My email is AT DOT
actual address pchuck mvps org.
 
Reply With Quote
 
Bob I
Guest
Posts: n/a
 
      1st Mar 2006
Delete from the command line doesn't send files to the recycle bin. I
have run xcopy up to an hour before. commandline is a LOT faster than
the GUI (explorer) copy.

jinnii wrote:

> Good evening,
>
> I just performed xcopy on test folder with lots of subdirectories and
> misc. files (125 total), and it worked beautifully. I wondered though
> if it can run for hours at a time (ie: set it up and go to bed leaving
> the two computers "always on" for the time). Remember, I have close to
> 23,000 files to copy. Should I perhaps do it in batches?
>
> In your earlier post you said:
>
>>Just delete the partial copy (don't send files to the Recycle Bin!),
>>and start over with xcopy.

>
>
> How do you delete files without sending them to the bin? I usually
> just empty it after deletion.
>
> Thanks, JK
>


 
Reply With Quote
 
jinnii
Guest
Posts: n/a
 
      2nd Mar 2006
Thanks Chuck,

Took me a few days to get it all copied over (I did it in batches),
kept the network connection open, just moved the batches (on both ends)
to a separate folder after each run). I just loved learning about and
using xcopy! I made a jpg of "xcopy /?" and between that and your
stellar instructions, did just fine. Discovered that one cannot access
the internet from any of the networked computers on the workgroup while
the xcopy network connection is running, but that wasn't a problem.
Can't wait to re-aquaint myself with and learn more DOS (I have to
catch up to my big brother, Penn...).

One migration-of-files down, another (even larger) to go albeit from a
"crashed" (actually just a retired) harddrive. I connected it to
computer JK-5's cable and from that PC simply grouped all 40+GB of
files in 2 to 4 GB batches (that seems to be a comfortable size for me)
on the old drive and plan to xcopy them all to the new computer over
the next few days when kids aren't doing homework.

I've discovered that I had multiple copies of my Quark and photo files
on three different computers, not to mention scores of kids music and
video-lets, and I am dreadful at filing/organization. Any suggestions
on that score welcome (e-mail may be best after conclusion of this
thread).

I'm sure I'll be back with I'll be back with more questions as I work
toward my goal of simplification and reorganization of my computers and
desk.

Thanks again, JK

 
Reply With Quote
 
jinnii
Guest
Posts: n/a
 
      2nd Mar 2006
>jinnii wrote:
>> How do you delete files without sending them to the bin? I usually
>> just empty it after deletion.


Shenan Stanley, MS-MVP wrote:
>SHIFT+Delete


Love it, thanks! Great for my second-guessing packrat habit...

JK

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
XP stopped refreshing automatically after copying files liu Windows XP General 0 18th Apr 2008 01:22 PM
Partitioning stopped in middle =?Utf-8?B?S2V2aW4=?= Windows XP General 2 2nd Sep 2007 10:14 PM
Copying files, then hang, and unable to abort and kill the process. Phillip Pi Windows Vista Networking 0 14th Jun 2007 08:09 PM
Copying files to 2nd PC in workgroup, process stopped in the middle jinnii Windows XP General 14 3rd Mar 2006 02:22 AM
Copying files using process class in ASP.NET Mark Microsoft C# .NET 5 28th Jul 2004 11:59 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:23 AM.