views:

310

answers:

5

Does anyone know of a program or script which lists all the files in your hard drive in descending order by size?

A: 

You can run dir /O-S and recurse. The following command does that:

for /R  %I in (.) DO dir /O-S

This walks the tree starting at current directory. Place your choice of directory after the /R.

dirkgently
+1  A: 

Not a script, but I have used TreeSize Free.

simon
All good answers, but I tried this first and it worked great.
Jack BeNimble
A: 

JDiskReport does something along these lines.

nzpcmad
A: 

WinDirStat is what I use, but it's Windows-only:

http://windirstat.info/images/windirstat.jpg

http://windirstat.info/

It's based on Kdirstat, for X11:

http://kdirstat.sourceforge.net/

Bart
A: 

My "unselfish" recommendation: RidNacs

splash