0

I have a bunch of Icon files showing in my Finder. I believe these are supposed to be hidden, I think it may be related to a terminal command I ran across my file system for another issue but now I have this side-effect.

How can I ensure all existing and future "Icon" files are hidden?

Finder Icon Files

2

1 Answer 1

0

You probably ran this command at some point to show all hidden files in Finder

 defaults write com.apple.finder AppleShowAllFiles TRUE; killall Finder

So to undo this, simply run this command

 defaults write com.apple.finder AppleShowAllFiles FALSE; killall Finder

Note that the restart of Finder using killall is required to affect this change since the value is only read during Finder's startup.

1
  • Thanks but that didn't fix the problem, I applied the command and Icon files still show after rebooting.
    – Dave
    Commented Jun 12, 2016 at 1:13

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .