DEV Community

Cover image for How to Remove Empty and Non Empty Directories in Linux
Johnny Simpson
Johnny Simpson

Posted on • Originally published at fjolt.com

7 2

How to Remove Empty and Non Empty Directories in Linux

Removing a directory in Linux is harder than you think, and it's not uncommon to get errors that looks like this:

folder: Directory not empty
folder: is a directory
Enter fullscreen mode Exit fullscreen mode

The confusion comes because rmdir cannot be used to delete a directory with files or folders inside of it.

Remove a non-empty directory on Linux

To remove a directory on linux, which is not empty, pass the -r flag to rm. -r means recursive, so it deletes everything in a folder, including the folder itself. Replace 'folder' below with your folder's name or location.

rm -r folder
Enter fullscreen mode Exit fullscreen mode

Remove multiple non-empty directories on Linux

If you want to remove multiple directories on linux, and they are not empty, simply separate the folder names with a space, and use rm -r:

rm -r folder1 folder2 folder3
Enter fullscreen mode Exit fullscreen mode

Remove an empty directory on Linux

If you want to remove a directory on linux, and your directory is empty, with no folders or files in it, then use rmdir:

rmdir folder
Enter fullscreen mode Exit fullscreen mode

Hostinger image

Get n8n VPS hosting 3x cheaper than a cloud solution

Get fast, easy, secure n8n VPS hosting from $4.99/mo at Hostinger. Automate any workflow using a pre-installed n8n application and no-code customization.

Start now

Top comments (1)

Collapse
 
carliecrosby profile image
Carlie Crosby

Great breakdown of directory removal in Linux! For advanced users, consider combining find with -empty or -exec flags for batch processing. It’s a powerful way to clean directories efficiently. Thanks for sharing!

Some comments may only be visible to logged-in visitors. Sign in to view all comments.

Cloudinary image

Video API: manage, encode, and optimize for any device, channel or network condition. Deliver branded video experiences in minutes and get deep engagement insights.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay