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
2009-03-26 01:12:35
All good answers, but I tried this first and it worked great.
Jack BeNimble
2009-03-27 04:09:45
A:
WinDirStat is what I use, but it's Windows-only:
http://windirstat.info/images/windirstat.jpg
It's based on Kdirstat, for X11:
Bart
2009-03-26 01:49:08