Question

I want to know how I can remove all the files in a directory say directory1 contains some 100 files. I just want to remove the files and not the directory.

I know that rmdir directory1 will remove directory1 completely. But I want to only remove all the files inside.

Was it helpful?

Solution

Try this:

rm /path/to/directory1/*

by adding the -r option you can additionally remove contained directories and their content recursively.

OTHER TIPS

  find /path/to/directory1 -type f | xargs rm -f

This recursively deletes all normal files in the directory.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top