Possible Duplicate:
Find duplicate files on Mac OS X

Hi all

I am trying to sort out duplicate folders in a folder which again has an awful lot of subfolders on a Mac OS X system. I want to have a list with the absolute paths to the duplicate files. I tried to solve the Problem in the Bash shell but if there is a GUI Application which does this I would prefer it.

link|improve this question

70% accept rate
Duplicate files or duplicate folders? And how do you qualify a "duplicate"? – Ignacio Vazquez-Abrams Feb 20 '10 at 22:38
possible duplicate (question): superuser.com/questions/46690/find-duplicate-files-on-mac-os-x – quack quixote Mar 11 '10 at 2:22
feedback

migrated from stackoverflow.com Feb 20 '10 at 23:25

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

closed as exact duplicate by quack quixote, Diago Mar 11 '10 at 5:57

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

Mr.Clean is an excellent free graphical tool for this:

alt text

link|improve this answer
This seems like great stuff. Thanks! – Cawas Feb 22 '10 at 16:07
feedback

There's also CleanMyMac, which is mostly for cleaning and not so much for finding duplicates:

enter image description here

... and Chipmunk, which is made to find duplicated files and quickly delete the ones outside or inside the specific folder. Not so good for finding duplicates in the same folder or randomly stored, but you still can be used if you want to go 1 by 1.

enter image description here

link|improve this answer
feedback
up vote 1 down vote accepted

I solved the problem a long time ago but didn't have the time to write down the answer. Here it is:

Mac OS X has a tool which can solve the problem in a decent way. It's called FileMerge and can be found in /Developer/Application/Utilities when you install the Xcode developer tools from the Mac OS X CD.

alt text

It first compares the two folders you selected and then shows the differences. You can then select if you want to merge the files to one destination file.

For further information read this article:

http://www.macworld.com/article/49584/2006/03/cmpfldr.html

link|improve this answer
Would you happen to know if there's a way to get that tool without installing Xcode? – Cawas Mar 11 '10 at 0:01
feedback

Try fdupes.

http://en.wikipedia.org/wiki/Fdupes

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.