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
|
|
|
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. |
|||||||
|
|
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 |
|||
|
|
|
|||
|
|
|
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. |
|||
|
|