sufehmi

Fastest way to list and delete MILLIONS of files in a folder

May 19th, 2026
5,764
0
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.35 KB | None | 0 0
  1. ## sometimes when your server was DDOS-ed, it will end up with MILLIONS of session files
  2. ## this is how to find it out, and clear it out
  3.  
  4. ###### fastest way to count millions of files in a folder
  5.  
  6. ls -U /var/lib/php/sessions|wc -l
  7.  
  8.  
  9. ###### fastest way to delete millions of files in a folder
  10.  
  11. find /var/lib/php/sessions/  -type f -mmin +60 -delete
  12.  
Advertisement