TL;DR
WinDirStat: treemap of which folders and extensions own the disk (like du, visual).
On Linux, when a disk fills up, the reflex is:
| |
On Windows there is no decent du in the box. Explorer → Properties is slow and opaque. The tool I use in the lab and on desktops: WinDirStat — free, open source, interactive treemap.
Think of it as du on steroids: scan a drive or folder and see where the space went, not only how many GB.
What it does (beyond summing bytes)
| View | Use |
|---|---|
| Directory list | Sort by size, like du | sort -h |
| Extension stats | See whether .iso, .vmdk, .log, or .bak dominate |
| Treemap | Each rectangle is a file; area is size; color is type |
| Largest files / duplicates | Obvious delete-or-move candidates |
The project site documents multithreaded scans, direct NTFS scanning when available, dark mode, and Explorer integration.
Quick use
- Download the installer (or portable build) from windirstat.net / the project’s GitHub releases.
- Run as Administrator if you are scanning all of
C:\(permissions onWindows, other user profiles, etc.). - Pick a volume or a specific folder (
D:\VMs,C:\Users\…\AppData). - Wait for the scan. Large disks take time; this is not
duon a tmpfs. - In the treemap, zoom into the fat block. Open the folder in Explorer, or delete from the UI only when you know what it is.
When to use it
- Disk is “full” and you do not know whether it is Downloads, hibernation, pagefile, ISOs, or VM snapshots.
- Before/after cleanup of a profile or a share.
- Showing a non-CLI person what owns the space (the treemap sells itself).
What it is not
- It does not replace
du/ncduon Linux or on a NAS over SSH. - It is not a magic cleaner: deleting System Volume Information, WinSxS, or “big” databases because they look large will break the host.
- A full
C:\scan on a file server with millions of files can take a long time; narrow the root.
Mental map
| World | Tool |
|---|---|
| Linux CLI | du, ncdu |
| Windows GUI | WinDirStat |
| macOS | DaisyDisk / OmniDiskSweeper (another family) |
Download and docs: https://windirstat.net/.