How to prevent .DS_Store file creation
February 3rd, 2010 - Mac OS X, Tips & Tricks
.DS_Store files store folder level metadata information (such as icon placement and background pictures) for Mac OS X to understand, this is fine and dandy and you’re likely to never even notice if you’re a bunch of Macs working together. Unfortunately, these .DS_Store files can be really pesky in a multi-platform network environment, they can basically just lead to unnecessary filesystem clutter that Windows & Linux users receive no benefit from.
Thankfully, you can prevent the DS_Store files from being created entirely by executing a simple command in the Terminal:
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
This disables the creation of .DS_Store files for the user account the command was executed on. You can make this change to all user accounts manually by executing the same command under their login, or you can copy modified com.apple.desktopservices.plist file to the ~/Library/Preferences folder of each other user account.
Of course it’s not just Mac OS X that create files that are obnoxious for cross-platformers. The Windows equivalent to the DS_Store file is Thumbs.db, and if you’re a Mac in a largely Windows network, you’ll probably be running into these all the time. You can easily delete Thumbs.db files in Mac OS X by using Spotlight.
Posted by: Manish Patel

Order Mac OS X 10.6 Snow Leopard today from Amazon.com - $25!

Write a comment