Is there any small Windows utility that counts the number of files in a directory recursively (including subdirectories) ?

link|improve this question

46% accept rate
feedback

1 Answer

up vote 8 down vote accepted

The folder's properties will do it for you:

alt text

You can also use dir along with find from the command line:

dir /a-d /s /b folder_name | find /c ":"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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