Tips and tricks
How to Recursively Remove .DS_Store
- Open up Terminal
- In the command line,
cd to/your/directory
- Finally, in the command line, type:
find . -name '.DS_Store' -type f -delete
cd to/your/directory
find . -name '.DS_Store' -type f -delete