본문 바로가기
정보기술/Mac

네트워크 폴더에서 .DS_Store 및 .AppleDouble 의 생성을 중지하는 방법

by fermi 2012. 5. 25.

Open terminal and enter 

defaults write com.apple.desktopservices DSDontWriteNetworkStores true

defaults read com.apple.desktopservices DSDontWriteNetworkStores

<press enter>

This will inhibit the creation of .DS_Store and .AppeDouble files from being created on network drives

http://www.mac-forums.com/forums/switcher-hangout/275107-appledouble-file-directory.html


find . -name \.DS_Store -exec rm {} \;

find . -name \.AppleDouble -exec rm -rf {} \;

http://icesquare.com/wordpress/how-to-remove-ds_store-and-appledouble/

http://www.linuxquestions.org/questions/linux-software-2/appledouble-cleaning-111387/

http://www.jpple.com/2011/12/delete-appledouble/