How to count number of files in a directory but not recursively
Solution 1:
ls -F |grep -v / | wc -l
-
ls -F
list all files and append indicator (one of */=>@|) to entries -
grep -v /
keep all de strings that do not contain a slash -
wc -l
count lines
Solution 2:
Try this oneliner:
find -maxdepth 1 -type f | wc -l
Solution 3:
Try this
ls -al | grep ^[-] | wc -l
-
ls -al
-- list all file with long listing format -
grep ^[-]
-- search for string which start with "-" that is symbol for denote regular file when list file with ls -al -
wc -l
-- count lines
Solution 4:
I just want to add thom's answer because I like to play with Bash. Here it goes:
echo "Directory $(pwd) has $(ls -F |grep -v / | wc -l) files"
Bellow is an example result of my /data
directory:
Directory /data has 580569 file(s).
And bellow are my explanations:
-
echo double-quoted-message
will print a desirable message. -
$(any-desirable-valid-command)
inside the double quoted message of anecho
will print the result of related command execution. -
pwd
will print the current directory. -
ls -F
is for listing all files and append indicator (one of */=>@|) to entries. I copied this from thom's answer. -
grep -v /
is a command for searching plain-text, the-v /
parameter will keep all the strings that do not contain slash(es). -
wc -l
will print line counting.
I know this question is 3 years old, I just can't hold my urge to add another answer.
Solution 5:
If you have tree
installed on your system you can use this command:
tree -L 1 /path/to/your/directory | tail -n 1
It shows you the number of files and directories in that directory.
-L n
shows the depth of search.
You can install tree
with sudo apt-get install tree
.