I have massive directories, and I would like to read all the files as fast as I can. I mean, not DirectoryInfo.GetFiles fast, but 'get-clusters-from-disk-low-level' fast.
Of course, .NET 2.0, c#
Similar question was here, but this approach wasn't any good:
http://stackoverflow.com/questions/1941223/c-directory-listing-massive-directory
Someone suggested pInvoke on FindFirst/FindNext. Anybody tried that and is able to share results?