« February 2010 | Main | April 2024 »

November 12, 2015

Removing DS_Store files from your Mac

Recursively Remove .DS_Store

1. Open up Terminal
2. In the command line, type: cd
3. In the command line, type: `find . -name '*.DS_Store' -type f -delete`
4. Press enter key to remove these files from your home folder.