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

billchase2

macrumors 68000
Original poster
Is there any easy way to delete all the Thumbs.db files on my Mac? I know they came from my PC when I transfered everything... but they're so annoying to delete one by one. Any ideas?
 
It doesn't matter much if you remove them from a Windows partition, they're just cached thumbnails, and Windows will recreate the file the next time you open the folder. There's an option in Windows to kill the creation of these files, but I don't feel like finding it at the moment.
 
Or make use of the wonderful power of UNIX! 😀

Open a terminal:

# find . -name "Thumbs.db" | xargs ls

That should list ALL of the files called "Thumbs.db" that are below your current directory.

If you actually want to delete all of those then you can do:

# find . -name "Thumbs.db" | xargs rm

😎
 
  • Like
Reactions: JoshDoug
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.