Getting Around "Too Many Files" Problem
Join the DZone community and get the full member experience.
Join For FreeIf you have too many files in a directory in Linux then 'rm' will not work (at least on older distros...maybe this has been fixed on newer distros). This snippet uses find in order to remove all files in the specified directory. Naturally you can change the value of '*' to limit the files you want to delete to particular names.
find $directory -name '*' -exec rm {} \;
Opinions expressed by DZone contributors are their own.
Comments