Number of files in a folder
To count the number of files in a particular folder(not recursive) in linux,
ls -l |wc -l
To count the number of files in a particular folder recursively in linux,
find . -type f |wc -l
ls -l |wc -l
To count the number of files in a particular folder recursively in linux,
find . -type f |wc -l
No comments