A small utility for cleaning the system from empty folders and “zero” files. The detection and removal of unnecessary objects can be done using a variety of filters and conditions. The program is very simple, small size and is undemanding to system characteristics.

Remove Empty Directories allows you to forget about routine manual cleaning of the system from empty unnecessary objects that often remain after uninstalling various software products. Using the utility, you can put your information storage devices in proper order.

The program scans disks and selects empty folders and files using a recursive method, that is, the search continues below specified directory across all subfolders.

After the utility scans the data storage areas you specified on the disks, it will display the items found. Then, by marking unnecessary objects or selecting the entire list, you can move them to the trash or completely delete them from the disk using the keyboard shortcut (Shift + Del).

All basic deletion parameters and search conditions for empty folders are specified in the "Settings" tab.

Features of Remove Empty Directories:

  • The program shows a list of found empty directories before deleting them
  • Supports multiple modes automatic deletion Add to cart
  • Allows you to specify white and black lists for search using filters
  • Supports detection of folders with zero files inside
  • High disk scanning speed

For stable operation, the installed package is required

A well known problem is deleting empty folders. Sometimes they are even created spontaneously and you forget about them over time, and then they lie there and you create new ones without even understanding those that already exist. Or maybe the existing ones are also empty?
Is this a familiar problem? No? Well, okay. In this article, I will show you a program that makes finding and deleting empty folders a very simple matter.

The program is free, but does not have a Russian interface. It won’t be difficult to understand it, because everything is intuitive and I’ll also show you what needs to be done.

So, after starting the program, the main window will look like this:

More precisely, at first it will be empty. You need to click the "Browse..." button and select a search location. This can be the entire computer, or a disk or folder.
After you have decided where to look, click the “Scan folders” button and the search process will begin, as a result of which the window will look like mine above.
All folders are shown in a tree view so you can understand where they are. Folders that are empty and can be deleted are marked in red.
Folders are deleted after clicking the "Delete folders" button

If you wish, you can open any folder by clicking on it 2 times with LMB.
Also when you click on the RMB folder ( Right Button mouse) a menu will appear


In it, you can open a folder in Explorer, scan only the selected folder, protect/unlock the folder, add to the ignored list, and delete the entire folder with all other folders inside.

As you can see, you can delete not only automatic mode, but also manually. It is not at all necessary to delete everything using the program, but just take advantage of the fact that it will show them to you.

On the "Settings" tab you can set various settings


For example, do not search in system directories or hidden ones. You can also add separate folders and files in them that do not need to be scanned.
In the "Explorer integration" field you can add a program item to context menu conductor (which appears with RMB), but for this you will need the program.

I hope now you can easily find and delete empty folders on your computer.

How to find and delete empty folders on your computer?

Today we’ll look at how to find and delete empty folders on your computer. I don’t know about you, but when I urgently need to put something in a folder (for example, unused documents or already watched movies), I simply create a folder without renaming it, throw everything in a pile and put it aside until better times. After documents are no longer needed, I try to delete them, but forget to delete folders.


And even after deleting programs, there are a lot of empty folders left, which, although they don’t take up much space, are quite an eyesore. So, I decided to find all the empty folders on my computer and delete them forever!


To do this I downloaded the program Remove Empty Directories which was created precisely for these purposes.



After downloading and installing the program, run it, let's figure out what it can do and how to work with it correctly.


First, go to the program settings tab, in it you need to pay attention to 3 important blocks:



1. Removal method. By default, delete to trash is selected.


2. Files that will be ignored. Those. if the folder contains only files with the *.tmp extension, the folder will be considered empty.


3. Directory names that will be ignored.


I think this is all clear and no questions should arise. Let's move on.


Now open the first tab again “ Scan” and press the button “ Scan again” to scan your entire computer. If you want to check only a specific directory (for example, the desktop), then click the “ Browse” and specify the path to your desktop. For example, here is the result of scanning my desktop



As you can see, I found two empty folders on my desktop, as evidenced by their highlighting in red. Folders that are not empty are highlighted in gray (they will not be deleted).


I press “ Delete folders” and wait until the folders are deleted



Ready! Now you can clear your computer of empty folders yourself! Periodically check your computer and clear it of empty folders; this is often done along with

Empty folders that were mistakenly created by the user or program usually do not bother operating system users. Windows systems 10. However, when the user starts a search, the empty directory makes it difficult to quickly find the desired object. Therefore you can use PowerShell command and delete unnecessary folders.

Find and delete empty folders in Windows 10

In order to find and delete empty folders in Windows 10, you should launch PowerShell and enter the following script (each line in turn).

$SomePath="C:\Users"
Get-ChildItem -Path $SomePath -Recurse -Directory | ForEach-Object -Process (
if ($false -eq $_.GetFileSystemInfos())
($_.FullName))

The first line of the script is the $SomePath variable, which contains the full path to the section or directory in which empty folders will be searched. You can change it to another disk.

The second part of the script involves bypassing a given location with a condition. This condition is a search for an empty directory. The results in the console will be displayed as an address to an empty folder.

IMPORTANT! If you are going to search for empty folders, it is worth running PowerShell with administrator rights.

This simple script only looks for empty folders, but does not delete them. This will have to be done manually; first check the directory. This is a positive point, since uncontrolled deletion of even empty folders can lead to operational errors operating system and software.