vote up 0 vote down star

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

flag

76% accept rate

4 Answers

vote up 1 vote down check

Not a script, but I have used TreeSize Free.

link|flag
All good answers, but I tried this first and it worked great. – Jack BeNimble Mar 27 at 4:09
vote up 0 vote down

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/

link|flag
vote up 0 vote down

JDiskReport does something along these lines.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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