Need an app that tells about file & folder sizes
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
migrated from stackoverflow.com Aug 28 '10 at 1:16
This question came from our site for professional and enthusiast programmers.
add a comment |
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
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
add a comment |
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
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
macos disk-space
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
add a comment |
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
add a comment |
8 Answers
8
active
oldest
votes
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 */
how do I do this for folder only or files only ?
– NSanjay
Aug 28 '10 at 0:33
add a comment |
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.
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
add a comment |
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.
add a comment |
You might be interested in GrandPerspective.
add a comment |
There is also OmniDiskSweeper.
add a comment |
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.

You can also search by file size in Finder.

add a comment |
My favorite is Space Radar (Electron-based, MIT license).
add a comment |
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.

add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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 */
how do I do this for folder only or files only ?
– NSanjay
Aug 28 '10 at 0:33
add a comment |
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 */
how do I do this for folder only or files only ?
– NSanjay
Aug 28 '10 at 0:33
add a comment |
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 */
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 */
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
add a comment |
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
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Aug 29 '10 at 8:45
KhairulKhairul
14616
14616
add a comment |
add a comment |
You might be interested in GrandPerspective.
add a comment |
You might be interested in GrandPerspective.
add a comment |
You might be interested in GrandPerspective.
You might be interested in GrandPerspective.
answered Sep 6 '10 at 21:14
ghoppeghoppe
6,0641621
6,0641621
add a comment |
add a comment |
There is also OmniDiskSweeper.
add a comment |
There is also OmniDiskSweeper.
add a comment |
There is also OmniDiskSweeper.
There is also OmniDiskSweeper.
answered Aug 29 '10 at 8:13
JulesLtJulesLt
1111
1111
add a comment |
add a comment |
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.

You can also search by file size in Finder.

add a comment |
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.

You can also search by file size in Finder.

add a comment |
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.

You can also search by file size in Finder.

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.

You can also search by file size in Finder.

answered Jun 24 '13 at 8:39
Andrew LottAndrew Lott
8181722
8181722
add a comment |
add a comment |
My favorite is Space Radar (Electron-based, MIT license).
add a comment |
My favorite is Space Radar (Electron-based, MIT license).
add a comment |
My favorite is Space Radar (Electron-based, MIT license).
My favorite is Space Radar (Electron-based, MIT license).
answered Nov 4 '16 at 2:55
dbkaplundbkaplun
1064
1064
add a comment |
add a comment |
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.

add a comment |
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.

add a comment |
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.

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.

answered Jan 23 '18 at 15:29
BobBob
1014
1014
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
I've had good luck with the free jDiskReport
– BasementJack
Sep 6 '10 at 19:36