How to count all files in a directory in Linux

Johnny Simpson - Oct 1 '22 - - Dev Community

To count all files in a directory in linux, simply cd to that directory and then run the following command:

ls | wc -l

Alternatively, you can select the directory by adding the directory to the command like so:
Enter fullscreen mode Exit fullscreen mode

ls /var/css | wc -l

Here, /var/css is the directory you want to count the files in.

Counting all files in Window

To do the same thing on windows, use cd to move to the directory in question, and then run the following on command line:

dir
Enter fullscreen mode Exit fullscreen mode

This will list all files and directories in a folder, and tell you how many files and directories exist.

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player