5 Ways to Show Folder Sizes in Windows 11, 10, 8, 7

Folder Size Explorer
Avatar of Jack Taylor By Jack Taylor, Software Expert & Technology Writer
Last Updated:

Windows File Explorer doesn’t display folder sizes by default – only individual file sizes – which makes it hard to see where your disk space is actually going. This guide covers 6 ways to show folder sizes in Windows 11, 10, 8, and 7, from built-in tooltips to a free disk space analyzer that lists every folder size at once.

List of ways to show folder sizes in Windows:

  1. Show Folder Sizes in File Explorer Tooltips
  2. View Folder Size From Folder Properties
  3. Display Folder Sizes in the Windows 11 Size Column
  4. Show Folder Size From the Command Line
  5. Display Folder Sizes Using PowerShell
  6. Show All Folder Sizes at Once Using a Free Disk Analysis App
  7. Conclusion
  8. Show Folder Size Windows FAQ

Show Folder Sizes in File Explorer Tooltips

Displaying folder size information in File Explorer folder tips is a valuable feature that enhances user productivity by providing quick insights into storage space usage without opening Properties or third-party software.

Enable Folder Size Information

  1. Open Windows File Explorer.
  2. Navigate to the “View” tab on the ribbon menu.
  3. Click on “Options” located on the right side of the ribbon.
  4. In the Folder Options dialog box, switch to the “View” tab.
  5. Scroll down and locate the checkbox labeled “Display file size information in folder tips.
  6. Check the box, then click “Apply” and “OK” to save the changes.
Show Folder Sizes Tooltip

Show Folder Sizes Tooltip

View Folder Size Information

  1. Once enabled, navigate to a folder in File Explorer.
  2. Hover your mouse cursor over the folder icon, and after a moment a tooltip will appear.
  3. The tooltip will display information about the folder, including its size.
  4. Folder size in the tooltip is shown in bytes, kilobytes, megabytes, or gigabytes depending on the folder’s size.

Advantages

  • Instant Insight: Provides an immediate read on storage usage without interrupting your workflow.
  • Efficient Workflow: No need to open Properties or launch a separate application.
  • No Additional Software: Built into Windows File Explorer, so there’s nothing to install.

Disadvantages

  • Limited Customization: No detailed breakdown of what’s taking up space inside the folder.
  • Tooltip Clutter: Can feel intrusive if you hover over folders frequently while browsing.
  • Tooltip Delay: There’s often a short delay before the size appears.

View Folder Size From Folder Properties

Steps to view folder size from File Explorer’s Properties menu:

  1. Right-click on the folder you want to inspect.
  2. Select “Properties” from the context menu.
  3. In the Properties dialog box, stay on the “General” tab.
  4. The size of the folder, including its contents, is displayed under “Size” and “Size on disk.”
Show Folder Size From Properties

Show Folder Size From Properties

Advantages

  • Simple and Quick: Only takes a few clicks.
  • Detailed Information: Also shows location, creation date, and attributes.
  • No Third-Party Software Required: Fully built into Windows.

Disadvantages

  • One Folder at a Time: There’s no way to compare or sort multiple folders at once.
  • Manual Process: Checking many folders means repeating the same steps over and over.
  • Limited Compatibility: Sizes can be inaccurate for some network or cloud-synced folders.

Display Folder Sizes in the Windows 11 Size Column

By design, File Explorer’s Size column only shows sizes for individual files – folders are left blank. This is intentional: calculating a folder’s size means recursively scanning every file inside it, including nested subfolders, which would slow down browsing on large drives if done automatically every time you open a window.

Windows itself has no setting to turn this on. Some third-party customization tools, such as Windhawk, offer community mods that force folder sizes into the Size column – but this comes at a real cost. To make this work, Windhawk installs a background service that runs continuously and injects code directly into explorer.exe every time it starts, so it can intercept and modify how File Explorer behaves. That means a process running at all times in the background, even when you’re not checking folder sizes, plus the general risk that comes with injecting third-party code into a core Windows process – instability, conflicts with future Windows updates, or slower Explorer performance overall.

We’d recommend against this approach. A dedicated, standalone application like Folder Size gives you the same information – and far more of it – without installing anything that hooks into Explorer or runs in the background. See Show All Folder Sizes at Once Using a Free Disk Analysis App below for a safer way to get this.

Why This Approach Is Risky

  • Always-On Background Service: Runs continuously, using system resources whether or not you’re actively checking folder sizes.
  • Injects Into a Core Windows Process: Modifying explorer.exe directly can cause instability, crashes, or conflicts with Windows updates.
  • No Vendor Accountability: Mods are community-submitted, so quality and security vary between individual submissions.

A Safer Alternative

  • No Background Service: A dedicated app like Folder Size only uses resources while it’s actually open and running.
  • No System Hooks: Works alongside Windows Explorer rather than modifying it, so there’s no risk to Explorer’s stability.
  • More Information, Not Less: Shows every folder’s size in a sortable list, with charts and largest-folder reports – well beyond what a single Size column could show anyway.

Show Folder Size From the Command Line

Using Command Prompt to check folder size is a flexible option for anyone who prefers a command-line interface or wants to script the process.

  1. Open Command Prompt: Press Windows key + R, type “cmd,” and press Enter – or search for “Command Prompt” in the Start menu.
  2. Navigate to the directory: Use cd followed by the folder’s path, for example cd C:\Users\YourUsername\Documents. Replace “YourUsername” with your actual username.
  3. Run the size command: Type dir /s FolderName, replacing “FolderName” with the folder you want to check.
  4. Read the result: Command Prompt lists every file and subdirectory inside the folder along with their sizes, then shows the total size of the folder and its contents at the end of the output.

Example

To check the size of a “Photos” folder inside “Pictures”:

  1. Open Command Prompt.
  2. Navigate to Pictures: cd C:\Users\YourUsername\Pictures
  3. Run: dir /s Photos

Command Prompt will list every file and subfolder inside “Photos” along with their sizes, then display the folder’s total size.

Advantages

  • Powerful and Scriptable: Can be automated or built into larger scripts.
  • Quick for Command-Line Users: No need to open a GUI or install anything extra.
  • Detailed Information: Also lists modification dates and file attributes.

Disadvantages

  • Learning Curve: Not intuitive if you’re unfamiliar with command-line syntax.
  • No Visual Breakdown: Just text output, no charts or sortable columns.
  • Risk of Mistakes: Easy to mistype a path or command if you’re not careful.

Display Folder Sizes Using PowerShell

PowerShell offers a more flexible, scriptable way to check folder sizes than Command Prompt, especially for bulk operations.

  1. Open PowerShell: Press Windows key + X and select “Windows PowerShell,” or search for it in the Start menu.
  2. Navigate to the directory: Use cd followed by the folder’s path, e.g. cd C:\Users\YourUsername\Documents.
  3. Run Get-ChildItem: Type Get-ChildItem -Directory -Recurse | Measure-Object -Property Length -Sum.
  4. Read the result: PowerShell returns the total size in bytes, which you can reformat into KB, MB, or GB as needed.

Example

To check the size of a “Photos” folder inside “Pictures”:

  1. Open PowerShell.
  2. Navigate to Pictures: cd C:\Users\YourUsername\Pictures
  3. Run: Get-ChildItem -Directory -Recurse | Measure-Object -Property Length -Sum

Advantages

  • Scripting Capabilities: Ideal for automating repeated checks or bulk operations.
  • Tightly Integrated with Windows: Works consistently across modern Windows versions.
  • Customizable Output: Format results however you prefer.

Disadvantages

  • Learning Curve: Cmdlet syntax takes some getting used to.
  • Potential for Mistakes: Scripting mistakes can affect files if you’re not careful.
  • Less Intuitive Than a GUI: Slower to use for a single one-off check.

Show All Folder Sizes at Once Using a Free Disk Analysis App

All the built-in methods above have the same limitation: they show you one folder at a time. To see every folder size in a drive at once, sorted and ready to act on, you need a dedicated disk space analyzer. Free options include Folder Size, TreeSize Free, and WinDirStat – all let you scan a full drive and view folder sizes in a sortable list rather than checking folders one by one.

Find the largest files and largest folders, sort folders and files by size, delete large unused files and folders to free up disk space, and visualize disk usage with pie or bar charts to spot space hogs at a glance. You can also print folder lists or print a folder tree for reporting or auditing.

Show Folder Sizes

Show Folder Sizes

Download Folder Size

Compatible with Windows 11/10/8.1/8/7/Vista (Both 32 & 64 Bit)

Folder Size: Copy, Cut, Paste, Delete, and Rename

Beyond just showing sizes, Folder Size lets you Copy, Cut, Paste, Delete, and Rename files and folders directly from its results – including copying between Folder Size and Windows Explorer. Combined with the full Windows Explorer shell context menu built into the app, it functions as a Windows Explorer with folder sizes built in.

Automatic Updates – No Rescanning Required

Folder Size monitors file system changes and updates scan results automatically. If you copy, move, rename, or delete files in Windows Explorer, those changes reflect in Folder Size immediately, with zero added load on system performance – it uses native Windows change notifications rather than installing a background service or shell hook, so it has no impact on your PC when you’re not using it.

Conclusion

Each of these methods works, and which one to use mostly comes down to how much detail you need. For a quick one-off check, folder tooltips or Properties are enough. For scripting or automation, Command Prompt and PowerShell get the job done. If you regularly need to see every folder size on a drive at a glance, sorted and ready to clean up, a dedicated tool like Folder Size – free to download for Windows 11, 10, 8.1, 8, 7, and Vista – saves the most time.

Show Folder Size Windows FAQ

How can I view the size of a folder in Windows File Explorer?

Right-click the folder, select “Properties,” and check the “General” tab – the folder’s total size, including its contents, is displayed there.

Is there a way to see folder sizes without opening Properties?

Yes – enable folder size tooltips in File Explorer’s View Options, then hover over any folder to see its size appear after a short delay.

Does Windows 11 show folder sizes in the Size column?

Not natively, and we’d avoid the workarounds that force it. Windows leaves the Size column blank by design. Tools like Windhawk can fake this by installing a background service that injects into explorer.exe, but that means a process running constantly and a real risk of instability. A standalone app like Folder Size shows the same information more safely, without touching Explorer at all.

Can I use Command Prompt to check the size of a folder?

Yes – open Command Prompt, navigate to the folder’s directory with “cd,” then run “dir /s FolderName.” The total size of the folder and its contents appears at the end of the output.

Is PowerShell another option for displaying folder sizes?

Yes – navigate to the folder’s directory in PowerShell and run “Get-ChildItem -Directory -Recurse | Measure-Object -Property Length -Sum” to get the folder’s total size in bytes.

What’s the fastest way to see every folder size on a drive at once?

A dedicated disk space analyzer like Folder Size, TreeSize Free, or WinDirStat – each scans a full drive and lists every folder’s size in a sortable table, which none of Windows’ built-in methods can do on their own.

Why doesn’t Windows show folder sizes by default?

Performance. Calculating a folder’s size means recursively scanning every file and subfolder inside it, which would slow down browsing on large or slow drives if Windows did it automatically every time a folder is displayed.

Are there any third-party applications for showing folder sizes in Windows?

Yes – Folder Size, TreeSize Free, and WinDirStat are widely used free options, each offering sortable results, charts, or export features beyond what Windows provides natively.

Please share this article with your friends – they will thank you!

This entry was posted in Folder Size on by .
Avatar of Jack Taylor

About Jack Taylor

Software Expert & Technology Writer
Jack Taylor is an IT professional and technology writer with over 20 years of experience in cybersecurity, enterprise infrastructure, storage technologies, and software optimization. He focuses on making complex technical topics easy to understand through practical guides, software reviews, and real-world troubleshooting advice.

2 thoughts on “5 Ways to Show Folder Sizes in Windows 11, 10, 8, 7

  1. Pingback: Print Directory List in Windows Easily & Free

  2. Boris

    In my version of windows 7 “Folder options” is in the “Tools” menu, not “View”.
    Ofc nobody uses 7 anymore so it’s helping nobody. It came with my second hand i5 thinkpad years ago, the machine will continue to serve me with linux lite or MX.

Leave a Reply

Your email address will not be published. Required fields are marked *