Copying Files over an Intermittent Network Connection - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:45:54Z http://stackoverflow.com/feeds/question/18172 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection 8 Copying Files over an Intermittent Network Connection glaxaco 2008-08-20T15:04:20Z 2008-09-17T21:39:25Z <p>I am looking for a robust way to copy files over a Windows network share that is tolerant of intermittent connectivity. The application is often used on wireless, mobile workstations in large hospitals, and I'm assuming connectivity can be lost either momentarily or for several minutes at a time. The files involved are typically about 200KB - 500KB in size. The application is written in VB6 (ugh), but we frequently end up using Windows DLL calls.</p> <p>Thanks!</p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/18178#18178 5 Answer by DannySmurf for Copying Files over an Intermittent Network Connection DannySmurf 2008-08-20T15:06:53Z 2008-08-20T15:06:53Z <p>Try using BITS (Background Intelligent Transfer Service). It's the infrastructure that Windows Update uses, is accessible via the Win32 API, and is built specifically to address this.</p> <p>It's usually used for application updates, but should work well in any file moving situation.</p> <p><a href="http://www.codeproject.com/KB/IP/bitsman.aspx" rel="nofollow">http://www.codeproject.com/KB/IP/bitsman.aspx</a></p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/18179#18179 0 Answer by Erik van Brakel for Copying Files over an Intermittent Network Connection Erik van Brakel 2008-08-20T15:08:15Z 2008-08-20T15:08:15Z <p>How about simply sending a hash after or before you send the file, and comparing that with the file you received? That should at least make sure you have a correct file.</p> <p>If you want to go all out you could do the same process, but for small parts of the file. Then when you have all pieces, join them on the receiving end.</p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/18190#18190 0 Answer by DannySmurf for Copying Files over an Intermittent Network Connection DannySmurf 2008-08-20T15:13:23Z 2008-08-20T15:13:23Z <p>@Erik van Brakel: That's exactly what BITS does.</p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/18212#18212 0 Answer by glaxaco for Copying Files over an Intermittent Network Connection glaxaco 2008-08-20T15:21:38Z 2008-08-20T15:21:38Z <p>According to the <a href="http://www.codeproject.com/KB/IP/bitsman.aspx" rel="nofollow">Code Project site</a>:</p> <blockquote> <p>Files are transferred only using the HTTP and HTTPS protocols with or without authentication</p> </blockquote> <p>Unfortunately, this is a deal breaker (at least within the current scope) because the server application does not have a web interface; files must be copied to a public folder, where they are scooped up and processed from there.</p> <p>As for comparing hash values, we're already doing that, but only after the file copy completed successfully. But do keep those suggestions coming!</p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/18927#18927 8 Answer by Joel Spolsky for Copying Files over an Intermittent Network Connection Joel Spolsky 2008-08-20T21:47:57Z 2008-08-20T21:47:57Z <p>I've used <a href="http://en.wikipedia.org/wiki/Robocopy" rel="nofollow">Robocopy</a> for this with excellent results. By default, it will retry every 30 seconds until the file gets across.</p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/19606#19606 3 Answer by Mark Brackett for Copying Files over an Intermittent Network Connection Mark Brackett 2008-08-21T10:54:09Z 2008-08-22T04:47:12Z <p>I'm unclear as to what your actual problem is, so I'll throw out a few thoughts.</p> <ul> <li>Do you want restartable copies (with such small file sizes, that doesn't seem like it'd be that big of a deal)? If so, look at <a href="http://msdn.microsoft.com/en-us/library/aa363852.aspx" rel="nofollow">CopyFileEx with COPYFILERESTARTABLE</a></li> <li>Do you want verifiable copies? Sounds like you already have that by verifying hashes.</li> <li>Do you want better performance? It's going to be tough, as it sounds like you can't run anything on the server. Otherwise, <a href="http://msdn.microsoft.com/en-us/library/ms740565%28VS.85%29.aspx" rel="nofollow">TransmitFile</a> may help.</li> <li>Do you just want a fire and forget operation? I suppose shelling out to robocopy, or <a href="http://www.codesector.com/teracopy.php" rel="nofollow">TeraCopy</a> or something would work - but it seems a bit hacky to me.</li> <li>Do you want to know when the network comes back? <a href="http://msdn.microsoft.com/en-us/library/aa377522%28VS.85%29.aspx" rel="nofollow">IsNetworkAlive</a> has your answer.</li> </ul> <p>Based on what I know so far, I think the following pseudo-code would be my approach:</p> <pre><code>sourceFile = Compress("*.*"); destFile = "X:\files.zip"; int copyFlags = COPYFILEFAILIFEXISTS | COPYFILERESTARTABLE; while (CopyFileEx(sourceFile, destFile, null, null, false, copyFlags) == 0) { do { // optionally, increment a failed counter to break out at some point Sleep(1000); while (!IsNetworkAlive(NETWORKALIVELAN)); } </code></pre> <p>Compressing the files first saves you the tracking of which files you've successfully copied, and which you need to restart. It should also make the copy go faster (smaller total file size, and larger single file size), at the expense of some CPU power on both sides. A simple batch file can decompress it on the server side.</p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/21186#21186 0 Answer by glaxaco for Copying Files over an Intermittent Network Connection glaxaco 2008-08-21T21:03:40Z 2008-08-21T21:03:40Z <p>Thanks for the RoboCopy and CopyFileEx suggestions. CopyFileEx in particular looks promising. Currently, the client application is using (VS.85).aspx">SHFileOperation to do the actual file copy.</p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/21220#21220 0 Answer by Shawn for Copying Files over an Intermittent Network Connection Shawn 2008-08-21T21:23:10Z 2008-08-21T21:23:10Z <p>SMS if it's available works.</p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/39559#39559 1 Answer by Robbo for Copying Files over an Intermittent Network Connection Robbo 2008-09-02T13:51:57Z 2008-09-02T13:51:57Z <p>I agree with Robocopy as a solution...thats why the utility is called <em>"Robust File Copy"</em></p> <blockquote> <p>I've used Robocopy for this with excellent results. By default, it will retry every 30 seconds until the file gets across.</p> </blockquote> <p>And by default, a million retries. That should be plenty for your intermittent connection. </p> <p>It also does restartable transfers and you can even throttle transfers with a gap between packets assuing you don't want to use all the bandwidth as other programs are using the same connection (/IPG switch)?.</p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/80197#80197 0 Answer by Peter Rounce for Copying Files over an Intermittent Network Connection Peter Rounce 2008-09-17T05:10:24Z 2008-09-17T05:10:24Z <p>You could use Microsoft SyncToy (free).</p> <p><a href="http://www.microsoft.com/Downloads/details.aspx?familyid=C26EFA36-98E0-4EE9-A7C5-98D0592D8C52&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/Downloads/details.aspx?familyid=C26EFA36-98E0-4EE9-A7C5-98D0592D8C52&amp;displaylang=en</a></p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/85140#85140 0 Answer by Ljubomir Josifovski for Copying Files over an Intermittent Network Connection Ljubomir Josifovski 2008-09-17T16:39:44Z 2008-09-17T16:39:44Z <p>Does anyone know of a robocopy equivalent for Unix? A minimal "retry x times before giving up" would do. My current "copy solution"</p> <p>$ tar cf - src/ | (cd dst &amp;&amp; tar xvf -)</p> <p>fails too often on dodgy usb sticks and big(ger) files (GB+). Then it just informs "tried to write xxx bytes, wrote xx" and moves to the next file.</p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/87955#87955 0 Answer by Ljubomir Josifovski for Copying Files over an Intermittent Network Connection Ljubomir Josifovski 2008-09-17T21:39:25Z 2008-09-17T21:39:25Z <p>Hm, seems rsync does it, and does not need server/daemon/install I thought it does - just $ rsync src dst.</p>