[macOS] Enable/Disable .DS_STORE
.DS_STORE Files means Desktop Services Store. This files are created and maintained by the Finder application on every folder. Similar to desktop.ini in MS Windows. Also, this file is hidden.
.DS_Store is a file that stores custom attributes of its containing folder, such as the position of icons or the choice of a background image.
# OFF for network storage
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
# ON for network storage
defaults write com.apple.desktopservices DSDontWriteNetworkStores false
Comments