1 Nov 2007 04:45
Re: copying a million tiny files?
Brian Dessent <brian <at> dessent.net>
2007-11-01 03:45:43 GMT
2007-11-01 03:45:43 GMT
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
RSS Feed