vote up 0 vote down star

If I want to check how many files there are in a folder (where there is likely to be 10,000+ files), is there a more efficient way than...

Public Function FileCount(FolderName as String) As Integer  

   Dim Files() As String

   Files = IO.Directory.GetFiles(FolderName)

   Return Files.Length  

End Function

It seems to be unweildly to be forced to load such a potentially large array. Any better suggestions?

flag

5 Answers

vote up 4 vote down check

Has it caused a problem? It's not like GetFiles() is returning the contents of each file, it is returning to you their paths, i.e., a string array.

link|flag
Still, 10,000 times ~12 (being optimistic, 8.3) is 120,000 bytes, which is a sizable chunk of memory to get at an integer... Still, you're probably right about premature optimisation... – Matthew Scharley Jul 7 at 2:24
120 kilobytes...for about a split second...I wouldn't worry really. – Ed Swangren Jul 7 at 2:29
Because each array element contains the full path as well as the filename, the average size is roughly 60 chars per file, so we're talking about creating a 600k block of memory (admittedly for only a small time period) just to get a single number. It's this sort of inefficiency generally that adds up. But... memory and electricity are cheap - for now. – Bill Sep 9 at 11:53
vote up 1 vote down

Unfortunately, you can't enumerate the contents of a directory in .NET 3.5 without using interop or obtaining all of the paths ahead of time. As mentioned, the disadvantage to using File.GetFiles() is that it returns all the paths at once, which can consume more resources than required.

If you want to enumerate the contents of the directory and increment a counter as you enumerate, you may try one of the following options.

  • Using .NET interop, call FindFirstFile and FindNextFile with the . pattern, incrementing a counter for each successful invocation.
  • Utilize features of .NET 4.0 which allow you to obtain an IEnumerable<T> for enumerating the contents of a directory.

Whenever interop is used, you should be concerned about the performance of making native WinAPI calls from managed code. Consider utilizing a profiler to determine if the performance penalty is acceptable.

link|flag
vote up 0 vote down

I don't think it's a problem. Under the hood the files aren't opened anyway, the function call only queries the disk file index or file allocation table for the files under that folder. It's no different than doing a dir on the command prompt.

Best way to see if it really causes a problem is to profile it.

link|flag
vote up 1 vote down

It may be unweildy but if you run a test and find the performance impact is minimal, it might still be the appropriate solution.

link|flag
vote up -3 vote down

No I think

But you can return IO.Directory.GetFiles(FolderName).Length

link|flag
How is that different? – SolutionYogi Jul 7 at 2:22
No I didn't said its different, I only removed 3 lines of code to single line. Thats all. – Anuraj Jul 7 at 2:25
You still have to store the temporary object, there is no difference – Ed Swangren Jul 7 at 2:26
the qualms with the solution are its performance, not its code size, since the IL for the two is virtually identical. – DevelopingChris Jul 7 at 4:46

Your Answer

Get an OpenID
or

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