What's Taking Up Space on My Hard Drive? (Windows 11 & Mac Guide)
Your disk is full. Or close to it. But when you look at your files, you can't figure out where the space went. Downloads don't look that big. You've deleted things. And yet your drive is still showing 95% full.
This guide explains exactly how to find what's eating your disk space on Windows 11 and Mac - and what to do about it.
Why your disk fills up without obvious files
The culprit is almost never the files you can see. The real space hogs are usually hiding:
- App caches - Chrome, Slack, Dropbox, and Photoshop quietly accumulate gigabytes of cache data that never clean themselves up
- Old downloads - installers, zip files, and setup files you ran once and forgot
- Video files - even a few raw or high-res video exports can eat 20–50 GB
- Development junk -
node_modules,.gradle, Docker images, and build caches are notorious space hogs - Hidden system folders - Windows stores update backups, restore points, and WinSxS files that can collectively take 20+ GB
- Duplicate files - photos, documents, and backups often exist in multiple places without you realizing it
The problem is Windows Explorer and Mac Finder don't show you the full picture. You see folders, not a ranked list of what's actually taking space.
How to see what's using your disk space
Method 1: Use a visual disk analyzer (fastest)
The quickest way to understand your full disk usage is with a disk space visualizer - a tool that scans your entire drive and shows you a map where larger boxes = larger files.
FreeUpDisk scans your drive in under 30 seconds and shows you a treemap of everything. You can instantly see which files and folders are taking the most space, click into any area to investigate, and delete things you don't need - all without touching anything automatically.
This is the approach we recommend because:
- It shows your entire drive at once - not folder by folder
- You can spot patterns (e.g., "my entire Videos folder is 80 GB")
- It's safe - nothing gets deleted unless you explicitly choose to
Method 2: Windows 11 built-in Storage Sense
Windows 11 has a built-in storage analyzer. It's not as detailed as a dedicated tool, but it's quick for a high-level view.
- Open Settings → System → Storage
- Windows will show a breakdown of what's using space (Apps, Temporary Files, Documents, etc.)
- Click any category to see more detail and clean up
Limitation: Windows groups files into broad categories and doesn't show individual file sizes. You can't see that one specific folder is eating 40 GB - you just see "Other" taking up a large chunk.
Method 3: Mac Storage Management
On Mac, Apple has a built-in storage manager:
- Click the Apple menu → About This Mac → Storage → Manage
- The sidebar shows categories: Applications, Documents, iCloud Drive, Trash, etc.
- Click Documents → File Browser to see files sorted by size
Limitation: Same issue as Windows - the categories are broad. You need to browse manually to find large specific files.
Method 4: Sort by size in File Explorer / Finder
A quick manual approach:
Windows 11:
- Open File Explorer, navigate to a folder (start with
C:\Users\YourName) - Switch to Details view
- Right-click the column header → add Size
- Click Size to sort by largest first
Mac Finder:
- Open Finder → press Command + F to open search
- Set search scope to "This Mac"
- Add criteria: File Size → is greater than → 500 MB
- Browse the results
Limitation: This only shows individual files, not folders. A single folder containing hundreds of small files won't appear as a problem even if it's taking up 20 GB total.
What to look for and where to find it
Once you can see your disk usage, here's what typically accounts for the most space:
Large video files
Check C:\Users\YourName\Videos on Windows, or ~/Movies and ~/Desktop on Mac. Raw footage, screen recordings, and export files are the most common surprise.
Downloads folder
C:\Users\YourName\Downloads and ~/Downloads. Most people never clean this out. Look for .dmg, .exe, .zip, and .iso files - installers you ran once and never deleted.
Application caches
- Chrome cache:
C:\Users\YourName\AppData\Local\Google\Chrome\User Data\Default\Cache - Mac general:
~/Library/Caches - Slack: Stores a full copy of your workspace files locally - can be 5–20 GB
Development files (if you're a developer)
node_modulesfolders - each one can be 500 MB or more, and they multiply across projects.gradle/caches- Android build caches- Docker images -
docker system dfshows how much Docker is using ~/.cargo(Rust) - gets large over time
Windows-specific space hogs
- WinSxS folder (
C:\Windows\WinSxS) - stores Windows component backups, can be 10–30 GB. Don't delete manually; useDISM /Online /Cleanup-Image /StartComponentCleanupfrom an admin command prompt - Hibernation file (
hiberfil.sys) - if you don't use Hibernate, you can disable it and reclaim the RAM-equivalent space - Page file (
pagefile.sys) - Windows virtual memory, usually 4–16 GB
Something is taking up space but I can't find it
This is one of the most common situations: your drive shows 90% full, but when you add up your visible files, the numbers don't match. Here's what's usually happening:
The space is there — it's just hidden from normal view. Windows Explorer and Mac Finder only show files and folders you have permission to see. Several large space hogs live outside that view:
- Windows shadow copies & restore points — System Restore can quietly consume 10–50 GB in
System Volume Information. You can trim this in Settings → System → Storage → More Storage Settings → System & Reserved. - macOS local Time Machine snapshots — if Time Machine is enabled, macOS keeps local snapshots even without a backup drive. These count against your disk in Finder but don't always show up as files. Run
tmutil listlocalsnapshots /in Terminal to see them. - The WinSxS folder — Windows keeps old component versions here for rollback purposes. It can appear to be 20–30 GB but can't be deleted manually — use
DISM /Online /Cleanup-Image /StartComponentCleanupas admin. - Hibernation file (hiberfil.sys) — equals the size of your RAM and is hidden by default. Disable Hibernate if you don't use it:
powercfg /h offin admin command prompt. - Recycle Bin / Trash — files you've deleted may still be sitting here taking up space. Empty it.
- App data you've forgotten — old virtual machines, game data in
C:\ProgramData, or iOS/Android backups stored locally.
The fastest way to surface all of this is with a disk analyzer that scans with admin rights. FreeUpDisk requests the necessary permissions on launch so it can show you everything — including folders that Windows Explorer hides.
How to quickly free up space
Once you've found the culprits, here's what's safe to delete:
| What to delete | Where to find it | Safe? |
|---|---|---|
| Downloaded installers | Downloads folder | ✅ Yes |
| Large video exports | Videos/Movies folder | ✅ If backed up |
| App caches | AppData/Library/Caches | ✅ Yes (apps rebuild them) |
| node_modules | Inside each dev project | ✅ Yes (run npm install to rebuild) |
| Windows temp files | %temp% in Run dialog |
✅ Yes |
| Old .zip/.dmg files | Downloads folder | ✅ Yes |
| Duplicate photos | Photos library | ✅ After verifying |
Things to be careful with:
- System folders (
Windows,System32,Library/System) - don't touch these - Any folder you don't recognize - research before deleting
- Large
.bakfiles - might be database backups you need
The fastest approach: visual + delete
The most efficient way to free up disk space is still:
- Use a visual disk analyzer to see the full picture in one scan
- Identify your 3–5 biggest space hogs
- Delete or move them
A typical FreeUpDisk session looks like this:
- Scan completes in ~20 seconds
- You immediately see a
node_modulesfolder at 12 GB and a forgotten video at 8 GB - Delete both with two clicks
- 20 GB recovered in 2 minutes
That's faster than manually digging through Settings menus or sorting folders one by one.
Summary
| Method | Best for | Speed | Detail |
|---|---|---|---|
| Visual disk analyzer (FreeUpDisk) | Finding everything fast | ⚡ Fast | Full drive overview |
| Windows Storage Settings | Quick Windows categories | Medium | Low - broad categories |
| Mac Storage Manager | Quick Mac categories | Medium | Low - broad categories |
| Manual folder sorting | Specific folders | Slow | Medium - files only, not folders |
The built-in tools are fine for a quick glance. But if your disk is actually full and you can't figure out why, a dedicated disk analyzer is the only tool that shows you the real picture — the entire drive, ranked by size, all at once.
Frequently asked questions
Do downloads take up space on my hard drive?
Yes. Every file you download is stored on your drive until you delete it. The Downloads folder is one of the most common sources of wasted space — especially .zip, .dmg, .exe, and .iso files from installers you only ran once.
Do folders take up space? Folders themselves are essentially weightless. The space comes from the files inside them. An empty folder takes up almost no space; a folder with 10 GB of videos takes up 10 GB.
How do I see what files are taking up space on Windows 11? Go to Settings → System → Storage for a broad category breakdown. For file-level detail, use a disk analyzer like FreeUpDisk or sort File Explorer by size (Details view → right-click column header → add Size).
How do I see what's using space on Mac? Open Apple menu → About This Mac → Storage → Manage. For a more detailed view, use a disk analyzer that shows a visual treemap of your entire drive.
Why does my hard drive show less space than it should? Several reasons: hidden system files (hibernation file, restore points, shadow copies), the file system itself reserves some space, or macOS is counting local Time Machine snapshots. A disk analyzer with admin access will show you the real breakdown.
See how FreeUpDisk works
Visual treemap, instant scan, safe cleanup, all for free.
Related guides
How to Free Up Disk Space (Windows & Mac Guide for 2026)
Disk full? This guide shows you exactly how to free up disk space on Windows and Mac - quickly and safely, without deleting things you need.
ReadHow to Delete Files on Windows and Mac (Safely and Permanently)
Learn how to delete files on Windows and Mac - including large files, hidden files, and files that won't delete. Plus how to find what's safe to remove.
ReadHow to Free Up 150 GB of Disk Space in 15 Minutes
Your hard drive is full and your computer is crawling. Here's how to reclaim up to 150 GB of wasted space in just 15 minutes using FreeUpDisk's visual treemap analyzer.
Read