Need an app that tells about file & folder sizes












9















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.










share|improve this question















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


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



















  • I've had good luck with the free jDiskReport

    – BasementJack
    Sep 6 '10 at 19:36
















9















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.










share|improve this question















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


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



















  • I've had good luck with the free jDiskReport

    – BasementJack
    Sep 6 '10 at 19:36














9












9








9








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.










share|improve this question
















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.







macos disk-space






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 1 '10 at 15:30









Arjan

26.9k1065107




26.9k1065107










asked Aug 27 '10 at 23:38







NSanjay











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


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









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


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















  • I've had good luck with the free jDiskReport

    – BasementJack
    Sep 6 '10 at 19:36



















  • I've had good luck with the free jDiskReport

    – BasementJack
    Sep 6 '10 at 19:36

















I've had good luck with the free jDiskReport

– BasementJack
Sep 6 '10 at 19:36





I've had good luck with the free jDiskReport

– BasementJack
Sep 6 '10 at 19:36










8 Answers
8






active

oldest

votes


















3














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 */ 





share|improve this answer
























  • how do I do this for folder only or files only ?

    – NSanjay
    Aug 28 '10 at 0:33



















3














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.







share|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



















1














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.






share|improve this answer































    1














    You might be interested in GrandPerspective.






    share|improve this answer































      0














      There is also OmniDiskSweeper.






      share|improve this answer































        0














        There are two GUI applications for Mac that help visually identify what's taking up disk space: Disk Inventory X and GrandPerspective. If you've ever used KDirStat or WinDirStat then you should be comfortable with it, but even if not it's fairly self-explanatory when you run it.



        enter image description here



        You can also search by file size in Finder.



        search by file size in Finder






        share|improve this answer































          0














          My favorite is Space Radar (Electron-based, MIT license).






          share|improve this answer































            0














            I use Disk Expert. It has a convenient visualization. The files sizes are displayed in a sunburst diagram. And what is important - it shows even hidden files, they are colored in white on the screenshot. You can preview the files and even remove them by dropping files and folders to the right bottom section.
            enter image description here






            share|improve this answer























              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "3"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f181627%2fneed-an-app-that-tells-about-file-folder-sizes%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown
























              8 Answers
              8






              active

              oldest

              votes








              8 Answers
              8






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              3














              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 */ 





              share|improve this answer
























              • how do I do this for folder only or files only ?

                – NSanjay
                Aug 28 '10 at 0:33
















              3














              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 */ 





              share|improve this answer
























              • how do I do this for folder only or files only ?

                – NSanjay
                Aug 28 '10 at 0:33














              3












              3








              3







              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 */ 





              share|improve this answer













              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 */ 






              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Aug 27 '10 at 23:43









              ennuikillerennuikiller

              915513




              915513













              • how do I do this for folder only or files only ?

                – NSanjay
                Aug 28 '10 at 0:33



















              • how do I do this for folder only or files only ?

                – NSanjay
                Aug 28 '10 at 0:33

















              how do I do this for folder only or files only ?

              – NSanjay
              Aug 28 '10 at 0:33





              how do I do this for folder only or files only ?

              – NSanjay
              Aug 28 '10 at 0:33













              3














              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.







              share|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
















              3














              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.







              share|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














              3












              3








              3







              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.







              share|improve this answer















              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.








              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Aug 28 '10 at 1:42









              nhinkle

              30k31127167




              30k31127167










              answered Aug 28 '10 at 1:22









              RyanRyan

              1,38511323




              1,38511323








              • 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














              • 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








              1




              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





              +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





              I appreciate it!

              – Ryan
              Aug 28 '10 at 4:59











              1














              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.






              share|improve this answer




























                1














                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.






                share|improve this answer


























                  1












                  1








                  1







                  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.






                  share|improve this answer













                  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.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Aug 29 '10 at 8:45









                  KhairulKhairul

                  14616




                  14616























                      1














                      You might be interested in GrandPerspective.






                      share|improve this answer




























                        1














                        You might be interested in GrandPerspective.






                        share|improve this answer


























                          1












                          1








                          1







                          You might be interested in GrandPerspective.






                          share|improve this answer













                          You might be interested in GrandPerspective.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Sep 6 '10 at 21:14









                          ghoppeghoppe

                          6,0641621




                          6,0641621























                              0














                              There is also OmniDiskSweeper.






                              share|improve this answer




























                                0














                                There is also OmniDiskSweeper.






                                share|improve this answer


























                                  0












                                  0








                                  0







                                  There is also OmniDiskSweeper.






                                  share|improve this answer













                                  There is also OmniDiskSweeper.







                                  share|improve this answer












                                  share|improve this answer



                                  share|improve this answer










                                  answered Aug 29 '10 at 8:13









                                  JulesLtJulesLt

                                  1111




                                  1111























                                      0














                                      There are two GUI applications for Mac that help visually identify what's taking up disk space: Disk Inventory X and GrandPerspective. If you've ever used KDirStat or WinDirStat then you should be comfortable with it, but even if not it's fairly self-explanatory when you run it.



                                      enter image description here



                                      You can also search by file size in Finder.



                                      search by file size in Finder






                                      share|improve this answer




























                                        0














                                        There are two GUI applications for Mac that help visually identify what's taking up disk space: Disk Inventory X and GrandPerspective. If you've ever used KDirStat or WinDirStat then you should be comfortable with it, but even if not it's fairly self-explanatory when you run it.



                                        enter image description here



                                        You can also search by file size in Finder.



                                        search by file size in Finder






                                        share|improve this answer


























                                          0












                                          0








                                          0







                                          There are two GUI applications for Mac that help visually identify what's taking up disk space: Disk Inventory X and GrandPerspective. If you've ever used KDirStat or WinDirStat then you should be comfortable with it, but even if not it's fairly self-explanatory when you run it.



                                          enter image description here



                                          You can also search by file size in Finder.



                                          search by file size in Finder






                                          share|improve this answer













                                          There are two GUI applications for Mac that help visually identify what's taking up disk space: Disk Inventory X and GrandPerspective. If you've ever used KDirStat or WinDirStat then you should be comfortable with it, but even if not it's fairly self-explanatory when you run it.



                                          enter image description here



                                          You can also search by file size in Finder.



                                          search by file size in Finder







                                          share|improve this answer












                                          share|improve this answer



                                          share|improve this answer










                                          answered Jun 24 '13 at 8:39









                                          Andrew LottAndrew Lott

                                          8181722




                                          8181722























                                              0














                                              My favorite is Space Radar (Electron-based, MIT license).






                                              share|improve this answer




























                                                0














                                                My favorite is Space Radar (Electron-based, MIT license).






                                                share|improve this answer


























                                                  0












                                                  0








                                                  0







                                                  My favorite is Space Radar (Electron-based, MIT license).






                                                  share|improve this answer













                                                  My favorite is Space Radar (Electron-based, MIT license).







                                                  share|improve this answer












                                                  share|improve this answer



                                                  share|improve this answer










                                                  answered Nov 4 '16 at 2:55









                                                  dbkaplundbkaplun

                                                  1064




                                                  1064























                                                      0














                                                      I use Disk Expert. It has a convenient visualization. The files sizes are displayed in a sunburst diagram. And what is important - it shows even hidden files, they are colored in white on the screenshot. You can preview the files and even remove them by dropping files and folders to the right bottom section.
                                                      enter image description here






                                                      share|improve this answer




























                                                        0














                                                        I use Disk Expert. It has a convenient visualization. The files sizes are displayed in a sunburst diagram. And what is important - it shows even hidden files, they are colored in white on the screenshot. You can preview the files and even remove them by dropping files and folders to the right bottom section.
                                                        enter image description here






                                                        share|improve this answer


























                                                          0












                                                          0








                                                          0







                                                          I use Disk Expert. It has a convenient visualization. The files sizes are displayed in a sunburst diagram. And what is important - it shows even hidden files, they are colored in white on the screenshot. You can preview the files and even remove them by dropping files and folders to the right bottom section.
                                                          enter image description here






                                                          share|improve this answer













                                                          I use Disk Expert. It has a convenient visualization. The files sizes are displayed in a sunburst diagram. And what is important - it shows even hidden files, they are colored in white on the screenshot. You can preview the files and even remove them by dropping files and folders to the right bottom section.
                                                          enter image description here







                                                          share|improve this answer












                                                          share|improve this answer



                                                          share|improve this answer










                                                          answered Jan 23 '18 at 15:29









                                                          BobBob

                                                          1014




                                                          1014






























                                                              draft saved

                                                              draft discarded




















































                                                              Thanks for contributing an answer to Super User!


                                                              • Please be sure to answer the question. Provide details and share your research!

                                                              But avoid



                                                              • Asking for help, clarification, or responding to other answers.

                                                              • Making statements based on opinion; back them up with references or personal experience.


                                                              To learn more, see our tips on writing great answers.




                                                              draft saved


                                                              draft discarded














                                                              StackExchange.ready(
                                                              function () {
                                                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f181627%2fneed-an-app-that-tells-about-file-folder-sizes%23new-answer', 'question_page');
                                                              }
                                                              );

                                                              Post as a guest















                                                              Required, but never shown





















































                                                              Required, but never shown














                                                              Required, but never shown












                                                              Required, but never shown







                                                              Required, but never shown

































                                                              Required, but never shown














                                                              Required, but never shown












                                                              Required, but never shown







                                                              Required, but never shown







                                                              Popular posts from this blog

                                                              Mouse cursor on multiple screens with different PPI

                                                              Agildo Ribeiro

                                                              Sometime when accessing a menu: “Ubuntu 16.04 has experienced an internal error”