Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any method in Linux to calculate the number of files in a directory (that is, immediate children) in O(1) (independently of the number of files) without having to list the directory first? If not O(1), is there a reasonably efficient way?

I'm searching for an alternative to ls | wc -l.

share|improve this question
What part about ls| wc -l isn't O(1)? – halfdan Sep 13 '10 at 15:58
2  
ls | wc -l will cause ls to do an opendir(), readdir() and probably a stat() on all the files. This will generally be at least O(n). – MarkR Sep 13 '10 at 16:01
@halfdan: ls outputs all files, so it's O(n) – yassin Sep 13 '10 at 16:10
Yeah correct, my fault. I was thinking of O(1) and O(n) to be same, although I should know it better. – halfdan Sep 13 '10 at 16:11
Can't you just use shell globbing? – Mechanical snail Aug 23 '12 at 2:28

4 Answers

up vote 11 down vote accepted

readdir is not as expensive as you may think. The knack is avoid stat'ing each file, and (optionally) sorting the output of ls.

/bin/ls -1U | wc -l

avoids aliases in your shell, doesn't sort the output, and lists 1 file-per-line (not strictly necessary when piping the output into wc).

The original question can be rephrased as "does the data structure of a directory store a count of the number of entries?", to which the answer is no. There isn't a more efficient way of counting files than readdir(2)/getdents(2).

share|improve this answer

One can get the number of subdirectories of a given directory without traversing the whole list by stat'ing (stat(1) or stat(2)) the given directory and observing the number of links to that directory. A given directory with N child directories will have a link count of N+2, one link for the ".." entry of each subdirectory, plus two for the "." and ".." entries of the given directory.

However one cannot get the number of all files (whether regular files or subdirectories) without traversing the whole list -- that is correct.

The "/bin/ls -1U" command will not get all entries however. It will get only those directory entries that do not start with the dot (.) character. For example, it would not count the ".profile" file found in many login $HOME directories.

One can use either the "/bin/ls -f" command or the "/bin/ls -Ua" command to avoid the sort and get all entries.

Perhaps unfortunately for your purposes, either the "/bin/ls -f" command or the "/bin/ls -Ua" command will also count the "." and ".." entries that are in each directory. You will have to subtract 2 from the count to avoid counting these two entries, such as in the following:

expr `/bin/ls -f | wc -l` - 2     # Those are back ticks, not single quotes.

The --format=single-column (-1) option is not necessary on the "/bin/ls -Ua" command when piping the "ls" output, as in to "wc" in this case. The "ls" command will automatically write its output in a single column if the output is not a terminal.

share|improve this answer
Agreed that ls -f is better than ls -1U (I think -f is meant for such piping), but I wish ls had an option to terminate each filename with a NUL character instead of a newline. – musiphil 2 days ago

As far as I know, there is no better alternative. This information might be off-topic to this question and you may already know this that under Linux (in general under Unix) directories are just special file which contains the list of other files (I understand that the exact details will be dependent on specific file system but this is the general idea). And there is no call to find the total number of entries without traversing the whole list. Please make me correct if I'm wrong.

share|improve this answer

use ls -1 | wc -l

share|improve this answer
Downvoting for 2 reasons: a) you don't explain why this is supposed to be better than ls -1 | wc -l and b) it isn't. – Hanno Fietz Apr 6 at 9:53

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.