Any software to resume a copy of a huge file when there is network disconnection?

4

1

I would like to know if there is a software for Windows which allows me to copy a huge file from a remote desktop network to my local PC, and if this copy gets interrupted, I would like to resume the copy process. I have tried Teracopy but its Resume feature does not work when network connection gets interrupted.

This is the scenario:

  • I connect to a remote computer using Remote desktop, sharing a local drive, so the remote computer can see my shared drive (such as U:)
  • On the remote computer I want to copy the remote file to the shared drive (U:).
  • Local computer has Windows 8, remote computer has Windows 2003
  • There is no internet connection available in remote computer

The problem:

  • connection is really slow from remote computer and when there is a disconnection, I cannot resume the copy process

is there a software which offers a resume feature to avoid copying the whole file again from scratch?

Junior M

Posted 2014-06-16T18:00:55.473

Reputation: 1 337

Question was closed 2014-06-18T08:43:12.720

1Why every OS still can't resume file transferring? – Ƭᴇcʜιᴇ007 – 2014-06-16T18:08:31.597

I am trying CopyFile to check if it resumes the copy http://sourceforge.net/projects/copyfile/ If it does not work I will try those articles

– Junior M – 2014-06-16T18:12:52.337

You could also run an FTP server and use a client that supports resume. Another way, which I often use for remote sites with an unreliable internet connection, is to use my DropBox account (paid accounts have a higher size limit). Install DropBox client on remote machine, create a free account for that machine and share a folder with it from your main account, drop file in shared folder, then you can just forget about it. Eventually, it will be copied (and DropBox supports resume). Check back in a few minutes / hours. I like this way a lot because it's completely passive. – Jason C – 2014-06-16T18:32:44.623

1

Oh and there's also DeltaCopy, an rsync wrapper for Windows. This implicitly supports resume. This would integrate into your currently described workflow more smoothly than DropBox.

– Jason C – 2014-06-16T18:35:26.380

2A quirky idea that got me out of a similar situation, is creating a private torrent and seed (only to yourself) from the remote machine to the local one. – Bruno9779 – 2014-06-16T19:20:54.800

Answers

1

I found out that CopyFile works as expected. It does not show the estimated time left but shows copy progress in percentage.

It also has an input box for repeating / resuming the copy as many times as you want.

Select source, target, select the file, click Add then Start.

http://sourceforge.net/projects/copyfile/

Junior M

Posted 2014-06-16T18:00:55.473

Reputation: 1 337