Step-by-Step Guide: Removing Null Space in Your System Drive

Step-by-Step Guide: Removing Null Space in Your System Drive

David Lv11

Step-by-Step Guide: Removing Null Space in Your System Drive

Despite not consuming any disk space, empty folders can still impede our file management efforts. For this reason, clearing out unnecessary clutter is essential to keep your drives and folders organized. The problem is, having hundreds of folders on various drives makes manually finding and deleting empty ones nearly impossible. This raises the question: is there an efficient way to delete empty folders from your computer?

In this article, we’ll show you how to remove empty folders from your computer with PowerShell, a Windows built-in utility, and third-party software.

Setting the Foundation to Delete Empty Folders in Windows

By default, not all users can delete every empty folder on a device; some can only be accessed, edited, and deleted by administrators.

Since we’ll be deleting all empty folders hiding on your device, logging in with an administrator account is best to avoid encountering errors later. Need help? Check out our g uide that explains the Windows administrator account in detail, including how to enable (or disable) it.

Secondly, the methods we’ll cover can help delete empty folders quickly, but only those are visible to us, not hidden. Therefore, if you want to delete all empty folders without leaving any hidden ones behind, you should first unhide all hidden folders. Follow these steps to do so:

  1. Open Windows File Explorer.
  2. In Windows 11, click onthree horizontal dots at the right end of the File Explorer menu and then clickOptions .
    Going to the Options Menu by Clicking on the Three Horizontal Dots in the Right End of the File Explorer Menu
    When using Windows 10, select theFile menu and clickOptions .
  3. Go to theView tab in theFolder Options window and check the box forShow hidden files, folders, and drives .
    Checking the Circle for Show Hidden Files Folders and Drives in Folder Options Window of File Explorer

Once you’ve signed in as an administrator and revealed the hidden folders, it’s time to delete the empty folders.

How to Find and Delete Empty Folders Using Windows PowerShell

If you only want to declutter a few folders, such as the ones containing your college data, there is no need to use third-party software. Interestingly, the Windows PowerShell utility can help you wipe out empty folders with just one command. Here’s how:

  1. Copy the path to the folder or drive you intend to scan for empty subfolders.
  2. Type**”Windows PowerShell”** into Windows Search, right-click on theWindows PowerShell app, then clickRun as administrator .
    Running the Windows PowerShell App as Administrator
    Find out how to open the Command Prompt and PowerShell utility in other ways .
  3. Enter the following command in the PowerShell application after adding the path to the target folder and hitEnter :
    (gci "folderpath" -r | ? {$_.PSIsContainer -eq $True}) | ?{$_.GetFileSystemInfos().Count -eq 0} | select FullName | Out-GridView
    Locating Empty Folders by Running a Command in Windows PowerShell App
  4. PowerShell will display all empty subfolders within that folder in a few seconds. Be patient if it takes a while.
    Successfully Locating All Empty Folders and Subfolders Using Windows PowerShell App
  5. Look over the list of empty folders PowerShell displays and determine whether they are safe to delete. When you are sure you want to delete these empty folders, enter the following command after adding the target folder path at its respective location:
    (gci "folderpath" -r | ? {$_.PSIsContainer -eq $True}) | ?{$_.GetFileSystemInfos().Count -eq 0} | remove-item
    Deleting the Empty Folders by Running the Command in Windows PowerShell App
  6. HitEnter and the empty subfolders will be automatically deleted.

There’s a catch, though. If you delete the empty subfolder in a folder that previously contained only that empty subfolder, the main folder also becomes empty. If you delete that empty folder by executing the command a second time, perhaps another parent folder in the tree may also become empty.

To prevent this issue, run the above command three to four times until the command that finds the empty folders does not reveal any remaining empty subfolders in PowerShell.

Similarly, you can use the above method to find empty folders on crowded drives and delete them. However, this method is limited because it doesn’t allow you to delete some empty folders, leaving others intact selectively.

Therefore, if you want more control over finding and deleting empty folders on your Windows device, you will have to use third-party tools. In the next section, we will demonstrate how you can do it.

How to Find and Delete Empty Folders Using Third-Party Software

While the method discussed above will work in most cases, it requires more manual input and gives less control over deleting specific empty folders. To keep things more straightforward and less time-consuming, you can use third-party software to clean your device.

You can use any software that lets you find and delete empty folders, but we recommend 4dots’ Empty Folder Cleaner for its ease of use. Let’s take a look at how it aids in finding and deleting empty folders on Windows:

  1. Visit 4dots’ official website to download Empty Folder Cleaner.

  2. Install the software on your device.

  3. Let Windows install any .NET Framework it prompts you to install.

  4. Once the application has been installed, run it.

  5. Check the boxes for all drives or folders you want to scan (except the one where your operating system is installed).
    Checking the Boxes for Drives or Folders to Scan in the Empty Folder Cleaner Software on Windows

  6. When you have selected the drives and folders you want to scan for empty folders, click on theScan button in the top-left corner.
    Viewing the Empty Files and Folders Found After Scanning the Selected Folders in Empty Folder Cleaner Software

  7. Depending on how much data you’re scanning, the app may take a while. Wait until the scan is complete.

  8. Upon completion of the scan, you will see a list of empty folders that have been found on your device. You can view them either as a list or as a tree.

  9. Check the boxes for empty folders you wish to delete or select all empty folders by clickingSelect All .
    Checking the Boxes for All Empty Files and Folders by Clicking on Select All Button in Empty Folder Cleaner Software

  10. In the top-left corner, right next toScan , clickDelete Empty Folders .

  11. Once the warning pop-up appears, selectYes to delete all empty folders successfully.
    Deleting All Empty Files and Folders by Clicking on the Yes Button in the Warning Pop-up in Empty Folder Cleaner Software

There is no doubt that Empty Folder Cleaner makes deleting empty folders on Windows devices incredibly simple. Despite its ease of use, it remains a third-party software. Even though it has a good reputation, you should still be aware of security risks when using it, especially when allowing it to scan confidential documents.

Don’t Let Empty Folders Clog Up Your Device’s Organization

Even though empty folders don’t strain our devices, removing them is a great way to keep your device organized. Hopefully, the instructions in this article will help clear your device of empty folders and unnecessary clutter.

Besides empty folders you deleted, many other files and folders unnecessarily burden your device, including files in Windows Temp, Recycle Bin, and LiveKernelReports. So, watch out for this extra burden and lower it regularly to keep your machine running smoothly.

Also read:

  • Title: Step-by-Step Guide: Removing Null Space in Your System Drive
  • Author: David
  • Created at : 2024-07-02 13:01:38
  • Updated at : 2024-07-03 13:01:38
  • Link: https://win11.techidaily.com/step-by-step-guide-removing-null-space-in-your-system-drive/
  • License: This work is licensed under CC BY-NC-SA 4.0.