MacOS – How to restore the default folder icon

finderfoldersiconmacos

I build web sites on a Mac and after the recent upgrade to Mavericks, the icon for all of my web template folders have changed from the standard Mac folder icon to the Parallels icon. I can change it using Get Info, but this has to be done one folder at a time and is unnecessarily tedious.

Has anyone else encountered this, and more importantly does anyone know how to reset the default to display the standard blue Mac folder icon?

Here is what it looks like right now:

enter image description here

Best Answer

  1. Get Info on the folder.
  2. Click the icon on the top-left of the window.
  3. Press X or Backspace

Alternatively, cd into the directory and run

rm Icon$'\r'

To delete the icon from multiple folders at the same time, run the following command:

find ~/Desktop -name Icon$'\r' -delete

Replace ~/Desktop with the containing folder of the folders that you wish to remove the icons from.