Answers for "linux file number in folder"

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 %s\n" "${#files[@]}" "$dir"
done
Posted by: Guest on June-22-2020
3

find number of files in a directory linux

find -maxdepth 1 -type d | while read -r dir; do printf "%s:\t" "$dir"; find "$dir" -type f | wc -l; done
Posted by: Guest on July-12-2020
0

count number of files in directory linux

ls -R|wc -l
Posted by: Guest on April-25-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language