Possible Duplicate:
Visualize the file system usage on Windows

I am running out of disk space on my Windows 7 machine and I would like an easy way to list files by size. Is there a utility that would allow me to do this?

link|improve this question
feedback

closed as exact duplicate by random Jul 5 '11 at 13:54

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

WinDirStat
http://windirstat.info/

link|improve this answer
feedback

There are a plethora of tools out there to show you disk usage/file size visually. My personal favorite is WinDirStat just because I like pretty colors. Since you are on windows 7, you could also run this in powershell:

Get-ChildItem C:\* -recurse | sort-object -property length -descending | Select-object  -f 10

Which would list the ten largest files on the C Drive.

link|improve this answer
A portable version of WinDirStat is here: portableapps.com/apps/utilities/windirstat_portable – LiuYan 刘研 Jun 30 '11 at 19:20
feedback

TreeSize Free is a free utility which shows disk space usage by directory (and by subdirectory tree), which might be useful to you.

link|improve this answer
feedback

A simple search based on file size will tell you. Perhaps start by looking for "Huge" files and see if anything jumps out. There are certainly other tools but the built in search is a good start

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.