Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In vb.net or C#, is it possible to retrieve a certain number of files e.g. 100 from a folder instead of scanning all files (e.g. 1000000) and retrieve them all?

If yes, then what is the implementation?

Many thanks

share|improve this question

4 Answers

In .Net Framework 4.0 and above, you can use DirectoryInfo.EnumerateFiles and take as many files as you want. This method does not require a full scan of the directory before it returns.

share|improve this answer
Thanks for your answer, so do it mean there is no way to achieve below .Net 4.0? – Dan An Dec 4 '12 at 14:37
I don't believe there's a means of doing this in the earlier frameworks. – Will A Dec 4 '12 at 17:41
Thx, do you agree "the FindFirstFile and FindNextFile functions of WinAPI" can achieve the aim? – Dan An Dec 10 '12 at 13:41

Since you want a solution that works with versions of .NET Framework prior to version 4, the only thing that comes in mind is the FindFirstFile and FindNextFile functions of WinAPI.

Have a look at this implementation of EnumerateFiles based on these WinAPI functions.

share|improve this answer
foreach (var file in new DirectoryInfo("c:/mydirectory").EnumerateFiles())
{
    //do stuff
}
share|improve this answer

I guess you should first call GetFiles methods to retrieve path of all files related to the directory (files did not read yet) and then read first 100 files (e.g., using StreamReader etc) from the collection.

This will work if framework is below 4.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.