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

kat.hayes

macrumors 65816
Original poster
Oct 10, 2011
1,448
52
When I go to the Storage tab of about this Mac it shows that almost half of my 500GB SSD is taken up by Other files. How can I search my Mac for individual files that are of a certain size, maybe 500MB or larger? Can this be done?

Thanks.
 
(In Yosemite -- can't remember if this works in previous releases) try...

In Finder, click on All My Files in the sidebar, then select View > Arrange > Size (ctl-cmd-6), then View > As List (cmd-2).

It should show you all your files, sorted by size and grouped into bands by size (e.g. 100MB to 1GB).

If the individual file sizes aren't being shown, then right-click in the bar above the list (e.g. on 'From 100MB to 1GB') and select Size from the drop-down list.

Hope that helps...
 
When I go to the Storage tab of about this Mac it shows that almost half of my 500GB SSD is taken up by Other files. How can I search my Mac for individual files that are of a certain size, maybe 500MB or larger? Can this be done?

Thanks.

That storage graphic is notoriously messed up, especially on Yosemite. Run the command below in Terminal and that will reindex Spotlight and correct the storage readout. Wait about 30 minutes or so for the reindex to complete, then you should see the Other amount display correctly. It will like get messed up again though.

Code:
sudo mdutil -E /
 
  • Like
Reactions: kat.hayes
hello, there is an Application in App store, it could search and find your large files in several folders or whole hard driver , and show in a pie chart. It's name is Large File Detector. You can search it in Mac App Store.
 
Just use find. Standard *nix utility.

man find

find <path> -type f -size +n[scale]

Example:

find . -type f -size +1G (finds any file in current directory and in all sub-directories with size 1Gigabyte or larger)
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.