Originally posted by: Nothinman
Sound like there is no solution, as that's as fast as the OS is,
It's only the UI that's slow.
Have you tried using Progman.exe to access instead? (I think it's still included on the distribution media, or at least it used to be... hmm.)
I think that you might find that, while Explorer has it's own slowdown issues, the NT filesystem drivers themselves will also have severe slowdown issues, once you reach the point of having more files in any one directory than can be cached all at once into RAM in the filesystem cache. In that case, I think that it reverts to a worst-case uncached behavior for directory lookups, although I don't know what happens in terms of NTFS directory-file modifications, since by default, NTFS rewrites the *entire* directory-file *every* time it is written to, in order to always maintain a sorted copy, so that binary-search lookups can be performed. Perhaps a registry tweak to disable that behavior would help here? (Is there one?)
That's one reason why reading/writing many small files in the same directory on NTFS is so slow, btw.