Answers for "number of files in a folder linux"

0

how to check how many files are in a folder linux

$ ls | wc -l
Posted by: Guest on December-03-2020
1

list number of files in each folder linux

find . -type d -print0 | while read -d '' -r dir; do
    files=("$dir"/*)
    printf "%5d files in directory %sn" "${#files[@]}" "$dir"
done
Posted by: Guest on June-22-2020

Code answers related to "number of files in a folder linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language