User Tools

Site Tools


how_to_count_all_the_files_in_a_directory

This is an old revision of the document!


How to count all the files in a directory



  ls -l -R /path | wc -l



Or:

  find "/home/charles/testarea" -daystart -type f -mtime +6 | wc -l



Or:

#Delete subfolders from “/home/charles/testarea”

#clear terminal window
echo -e “\033c”

find “/home/charles/testarea” -mindepth 1 -mtime +6 -type d | while read x; do echo “———” ; echo Deleting folder “$x” ; rm -R “$x”;

done

how_to_count_all_the_files_in_a_directory.1481664528.txt.gz · Last modified: 2023/03/09 22:35 (external edit)