What's the fastest way to remove all files & subfolders in a directory?

The fastest way to remove them from that directory is to move them out of there, after that just remove them in the background:

mkdir ../.tmp_to_remove
mv -- * ../.tmp_to_remove
rm -rf ../.tmp_to_remove &

This assumes that your current directory is not the toplevel of some mounted partition (i.e. that ../.tmp_to_remove is on the same filesystem).

The -- after mv (as edited in by Stéphane) is necessary if you have any file/directory names starting with a -.

The above removes the files from your current directory in a fraction of a second, as it doesn't have to recursively handle the subdirectories. The actual removal of the tree from the filesystem takes longer, but since it is out of the way, its actual efficiency shouldn't matter that much.


rsync is surprisingly fast and simple. You have to create empty directory first,

mkdir emptydir
rsync -a --delete emptydir/ yourdirectory/

yourdirectory/ is the directory from where you want to remove the files.


One problem with rm -rf *, or its more correct equivalent rm -rf -- * is that the shell has first to list all the (non-hidden) files in the current directory, sort them and pass them to rm, which if the list of files in the current directory is big is going to add some unnecessary extra overhead, and could even fail if the list of file is too big.

Normally, you'd do rm -rf . instead (which would also have the benefit of deleting hidden files as well). But most rm implementations including all POSIX conformant ones will refuse to do that. The reason is that some shells (including all POSIX ones) have that misfeature that the expansion of .* glob would include . and ... Which would mean that rm -rf .* would delete the current and parent directory, so rm has been modified to work around that misfeature of those shells.

Some shells like pdksh (and other Forsyth shell derivatives), zsh or fish don't have that misfeature. zsh has a rm builtin which you can enable with autoload zsh/files that, since zsh's .* doesn't include . nor .. works OK with rm -rf .. So in zsh, you can do:

autoload zsh/files
rm -rf .

On Linux, you can do:

rm -rf /proc/self/cwd/

to empty the current directory or:

rm -rf /dev/fd/3/ 3< some/dir

to empty an arbitrary directory.

(note the trailing /)

On GNU systems, you can do:

find . -delete

Now, if the current directory only has a few entries and the bulk of the files are in subdirs, that won't make a significant difference and rm -rf -- * will probably be the fastest you can get. It's expected for rm -rf (or anything that removes every file) to be expensive as it means reading the content of all directories and calling unlink() on every entry. unlink() itself can be quite expensive as it involves modifying the deleted file's inode, the directory containing the file, and some file system map or other of what areas are free.

rm and find (at least the GNU implementations) already sort the list of files by inode number in each directory which can make a huge difference in terms of performance on ext4 file systems as it reduces the number of changes to the underlying block devices when consecutive (or close to each other) inodes are modified in sequence.

rsync sorts the files by name which could drastically reduce performance unless the by-name order happens to match the by-inum order (like when the files have been created from a sorted list of file names).

One reason why rsync may be faster in some cases is that it doesn't appear to take safety precautions to avoid race conditions that could cause it to descend into the wrong directory if a directory was replaced with a symlink while it's working like rm or find do.

To optimize a bit further:

If you know the maximum depth of your directory tree, you can pass it to find:

find . -maxdepth 3 -delete

That saves find having to try and read the content of the directories at depth 3.