I have a file ".DS_Store" that is appearing everywhere . How do I get rid of it and what is it?

I have a file ".DS_Store" that is appearing everywhere . How do I get rid of it and what is it?

Open the Script Editor or AppleScript Editor in one of the subfolders of Applications and run the following:
tell application "Finder" to quit
if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is "1" then
do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
else
do shell script "defaults write com.apple.finder AppleShowAllFiles 1"
end if
delay 2
tell application "Finder" to run
If you change your mind later, run the script again.
(71410)

Similar Messages

Maybe you are looking for