Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

mcmike100

macrumors member
Original poster
Jan 31, 2005
93
0
Does anyone know of a program that will tell me how much hard drive space is being taken up by various things?

Recently, I lost three gigs of space for no apparent reason. I suspect it has to do with the cache produced by Lightroom and some other things.

I'd like to find out for sure where that free space went, though.

Any ideas?

Thanks
 
Finder can do it. :p

Select View > as List, and Command+J (Show View Options). Select the last button labeled, Calculate All Sizes. Finder will then list all the space taken up by the various apps, files and folders.
Here's to the Crazy Ones
 
lalcan said:
Try Whatsize it's great and freeware, you can find it in versiontracker...

I was just using WhatSize. It works quite well and being free makes it even better.
 
Fire up Terminal

Code:
sudo 'du / -m | sort -n -r> filesize;  open filesize'

and you'll get a nice list of files and directories sorted by size (descending).
 
try "du"

mcmike100 said:
Does anyone know of a program that will tell me how much hard drive space is being taken up by various things?

Recently, I lost three gigs of space for no apparent reason. I suspect it has to do with the cache produced by Lightroom and some other things.

I'd like to find out for sure where that free space went, though.

Any ideas?

Thanks


"find" works well for your task. Use the find command from the terminal.
see "man find" for details.

You can ask "find" for example to print the names of all files larger than a given size. "find / -size +100000000c -print" would print out the files larger than 1000000000 bytes long
Check the find man page for details it can also find files based on other criteria like date of modifation or a pattern in the filename

Of courrse you can hunt around with finder too and click "get info" and it willtell you how big thing are too.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.