Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Facebook Twitter Instagram
Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Tech News Today
Home»Windows»4 Ways to Show Folder Size In Windows

4 Ways to Show Folder Size In Windows

nishantBy nishantAugust 20, 2022
Show Folder Size

It’s necessary to check the folder sizes to determine whether they are using up too much storage space. Additionally, you would also want to view the folder sizes if you were transferring a folder over the internet or into another storage device. 

Fortunately, seeing the folder sizes is very easy on Windows devices. There are graphical and command-line based applications available in windows that provide you with multiple ways to do it. 

Table of Contents

  • How to Show Folder Size on Windows
    • Using File Explorer
    • Using Folder Properties
    • Using CMD
    • Using PowerShell
  • Frequently Asked Questions
    • How to See the Hidden Folders on Windows 11?
    • How to Fix if File Explorer Isn’t Showing Folder Size?

How to Show Folder Size on Windows

You can easily see the folder size using the file explorer on Windows. File explorer also provides other folder information like date creation, size, folder path, and many more. Furthermore, You can also use CLI applications like Powershell and CMD to get the folder size details. We will go thoroughly on how to do these.

Using File Explorer

File explorer gives easy access to the file and folder details on windows. As stated earlier, you can also view other details related to the folder using it. 

Here’s how to see the folder size using it;

  1. Navigate to the file explorer and go to the directory of the folder.
  2. Hover your mouse cursor over the folder for a few seconds. 
  3. You will see the folder tips inside a yellow box, showing you the folder’s size, date created, and other related info.
Note: You will not be able to use this feature if it is disabled in the folder’s option.

To enable the Folder tips, follow these steps; 

  1. Press Windows Key + R to open Run. 
  2. Type CMD in the field and hit enter.
  3. Now, execute this command in CMD. This command will open the Folder options.  C:\Windows\System32\rundll32.exe shell32.dll,Options_RunDLL 0\Folder option using cmd
  1. Go to the View tab. 
  2. Now, check the Display the size information in folder tips to enable this feature.
  3. Finally, Click on Apply.  
    Folder options
Note: You can also open the Folder Options by clicking on the three dots on the top panel of the file explorer and then going to Options

Using Folder Properties

You can use folder properties to check different folder Info like its size, date created, attributes, and much more. To see the folder’s size using this, follow these steps;

  1. Choose the folder you want to see the size of and right-click on it. 
  2. Go to Properties.
  3. You will now get to see the details like Size and Size on disk of that specific folder.
    Folder Properties

Using CMD

There are command lines that you can use to check the folder size on the go. It just requires you to execute the command and shows you every detail you want of the folder. To use this for viewing the folder size, perform these steps;

  1. Open the command prompt with elevated privileges. To do so, Press Windows Key + R and type CMD. Now,  press Ctrl + Shift + Enter.
  2. Now, enter the command cd/d to change the file directory.  In place of E:\folder, use the location of the folder where the file you want to view is placed.
    cd/d E:\folder
    Change folder directory in CMD
  3. Now, the file directory will be changed to your desired file’s location.
  4. Now, type dir and hit enter. This will give you a detailed overview of that directory. Dir command
  5. Search for your file’s name, and you will see its size on the side of it. 

Using PowerShell

Powershell is another advanced CLI tool you can use to check the folder sizes. There are several command lines you can use for this. However, this article will suggest some useful and efficient ones. Here’s how to use powershell for checking the file sizes.

  1. Press Windows key + R. Type Powershell and hit enter.
  2. Now, use the cd command to change the directory to your desired folder. 
  3. For instance, we want to see the size of a folder named images located in th E:\ drive, so we have to change the directory to that specific folder location. In such a case, execute the command like this
    Cd E:\images
    change-directory
  4. Then copy this command and paste it to the powershell window. You will now immediately get the folder’s size in KB, GB or MB. view folder size in powershell
switch((ls -r|measure -sum Length).Sum) {
 {$_ -gt 1GB} {
     '{0:0.0} GiB' -f ($_/1GB)
     break
   }
   {$_ -gt 1MB} {
     '{0:0.0} MiB' -f ($_/1MB)
     break
   }
   {$_ -gt 1KB} {
     '{0:0.0} KiB' -f ($_/1KB)
     break
   }
   default { "$_ bytes" }
 }

There is another command you can use to see the contents inside the folder along with their file sizes. To use it, paste this command into the powershell. Just remember to change the folder directory E:\images to your desired one.
Get-ChildItem -Path E:\images\ -Recurse | Where-Object {$_.PSIsContainer -eq $false}   
powershell-code

 This command doesn’t require changing the root directory, so it’s easy to use too. However, it doesn’t show the total folder size.

Frequently Asked Questions

How to See the Hidden Folders on Windows 11?

To see the hidden folders, go to File explorer. Then, click on the View tab, and from the Show option check the Hidden items. You can also see which folders are kept hidden in the system using CMD. For this, open CMD and execute this command;
dir C: /a:h /b /s

Change the drive letter (it is C: in this command) to any of your desired drives. This will instantly show the hidden folders in that drive. This command will also work for the previous version of Windows.

How to Fix if File Explorer Isn’t Showing Folder Size?

When a folder’s path is more than 260 characters long, File Explorer cannot display its size. The fix for this is to decrease the path length or you can use other processes mentioned in this article to check the folder’s size. 

how-to
nishant

Nishant is an enthusiast who loves writing about technology. He also is heavily invested in keeping himself updated about the latest happenings in the tech world. At Tech News Today, he covers Operating Systems, how-to-topics, and Fixes.

Related Posts

start menu wont open

Start Menu Won’t Open? 7 Ways to Fix it

January 13, 2023
motherboard-audio-not-working

Motherboard Audio Not Working? Try These Fixes

January 13, 2023
empty recycle bin for all users

How to Empty Recycle Bin for All Users on Windows

January 10, 2023
how-to-stop-screen-from-turning-off

How to Keep Your Stay Screen On for Longer Time

January 9, 2023
hdmi-laptop-to-displayport-monitor

How to Connect HDMI Laptop to DisplayPort Monitor

January 4, 2023
how to make windows 10 faster

12 Ways How You Can Make Windows 10 Faster

January 4, 2023
Add A Comment

Leave A Reply Cancel Reply

Latest Posts
what is ghost of tsushima legends

What is the Ghost of Tsushima Legends Mode

January 12, 2023
raid 5 vs raid 10

RAID 5 Vs RAID 10 – Which One Is Better?

January 12, 2023
best-tv-settings-for-gaming

Best TV Settings for Gaming

January 9, 2023
You may also like
tv-screen-goes-black-randomly

TV Screen Goes Black Randomly? Try These 11 Fixes

January 15, 2023
how to find unique values in excel

How to Find Unique Values in Excel

January 15, 2023
how-to-open-and-use-chrome-settings

How to Open and Use Chrome Settings

January 16, 2023
Recommended
Cookie Clicker Garden Guide

Cookie Clicker Garden Guide to Unlocking Every Seed

September 26, 2021
monitor no signal

Computer Turns On But Monitor Says No Signal (9 Ways To Fix)

November 10, 2022
Facebook Twitter Pinterest
  • Home
  • About Us
  • Editorial Guidelines
  • Fact-Checking Policy
  • Privacy Policy
  • Affiliate Disclosure
© 2023 TechNewsToday.

Type above and press Enter to search. Press Esc to cancel.