Delete the .DS_store file

 

Two steps

1. Set the .DS_Store not to be generated

defaults write com.apple.desktopservices DSDontWriteNetworkStores true

2. Delete the original .DS_Store

sudo find / -name ".DS_Store" -depth -exec rm {} \;
 

 

Guess you like

Origin blog.csdn.net/LIUXIAOXIAOBO/article/details/113514213