OK so OS X creates these goofy .DS_Store files that i need to delete from everywhere once a while... and just found a way to do them all for a dir and what is in it..
- open a terminal window
- cd to the dir where you want to remove files from
- type the following command
find . -name *.DS_Store -type f -exec rm {} \;
and your done...



0 Comments:
Post a Comment