X-Recipient: archive-cygwin AT delorie DOT com X-Spam-Check-By: sourceware.org Message-ID: <20071101155758.4084@blackhawk> From: "d.henman" Date: Thu, 01 Nov 2007 15:57:58 +0900 To: Subject: RE: copying a million tiny files? In-reply-to: Your message of Wed, 31 Oct 2007 23:13:45 -0500 <001c01c81c3d$992990c0$020aa8c0@DFW5RB41> References: <6a42eec70710311438s273b63dcxc6c741dde4593afc AT mail DOT gmail DOT com> <47294BE7 DOT E195E110 AT dessent DOT net> <001c01c81c3d$992990c0$020aa8c0 AT DFW5RB41> X-Mailer: MH-E 8.0.3; GNU Mailutils 1.2.1; GNU Emacs 22.1.50 Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com From what Gary mentions..... indeed rsync is the best way to go. At least for thinking, on time backups. With rsync, only the first time is slow. For one shot backups of many files,,,,,using tar to group them into one and then sending is a good idea. Using xcopy, is kind of silly and wont get you compatiblity...... especially in scripts.... regards Gary R. Van Sickle wrote: > > From: Brian Dessent > > > > sam reckoner wrote: > > > > > I'm not exaggerating. I have over one million small files > > that like to > > > move between disks. The problem is that even getting a directory > > > listing takes forever. > > > > > > Is there a best practice for this? > > > > I know it's heresy but if you just want to copy files why not > > use the native XCOPY? It will not suffer the performance > > degredation of having to emulate the POSIX stat semantics on > > every file, just like the native DIR command in a large > > directory does not take ages because it simply uses > > FindFirstFile/FindNextFile which are fairly efficient (but do > > not provide sufficient information to emulate POSIX.) > > > > Brian > > > > I have a similar situation to the OP (copying many thousands of small files > over a fairly slow link), and actually timed using XCOPY vs. Cygwin methods > (cp in my case). It didn't make a significant difference. Ultimately what > I think you run into in these sorts of situations is that you bump up > against the slowness of the link (or physical disk) because, POSIX emulation > or not, all your caches do is thrash. > > -- > Gary R. Van Sickle -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/