I need an app that tells about file & folder sizes, like what is the biggest file and/or folder on my hard disk, sort this detail from biggest file and/or folder to the smallest & vice versa, also able to tell me about this detail based on the folder that I have chosen.

link|improve this question
I've had good luck with the free jDiskReport – BasementJack Sep 6 '10 at 19:36
feedback

migrated from stackoverflow.com Aug 28 '10 at 1:16

This question came from our site for professional and enthusiast programmers.

5 Answers

You could try Disk Inventory X.

Disk Inventory X is a disk usage utility for Mac OS X 10.3 (and later). It shows the sizes of files and folders in a special graphical way called "treemaps". If you've ever wondered where all your disk space has gone, Disk Inventory X will help you to answer this question.

link|improve this answer
1  
+1, great suggestion! I use the equivalent software on Windows for exactly this purpose. I updated your link to go to the manufacturer's website directly, rather than to the 3rd party review site, as that'll be more helpful to people viewing your answer :) – nhinkle Aug 28 '10 at 1:43
I appreciate it! – Ryan Aug 28 '10 at 4:59
feedback

you can easily do this at the command line by executing the following at the root (/),

du -sk * | sort -nr

For directories only you can execute:

du -sk */ 
link|improve this answer
how do I do this for folder only or files only ? – NSanjay Aug 28 '10 at 0:33
feedback

I recommend DaisyDisk. Files and folders are visualized by a ring chart, makes it easy to identify which file/folder takes the most space in the hard disk.

The trial version has no limit on time, just a nagging screen when you launch the app.

link|improve this answer
feedback

You might be interested in GrandPerspective.

link|improve this answer
feedback

There is also OmniDiskSweeper.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown