I would like to reset the preferences for all my Mac OS X folders. Is this possible?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

This would find and delete the files storing view options under your home directory:

find ~ -name .DS_Store -delete

(And don't forget the -name flag — without it it the command would delete everything in your home directory.)

As far as I (and Wikipedia) know, the .DS_Store files mostly store information about folder-specific view options.

link|improve this answer
Do these files only contain Finder view preferences, or maybe also some other data (e.g. thumbnail caches?) – Daniel Beck Nov 23 '11 at 20:32
@DanielBeck The Quick Look thumbnails are stored in /private/var/folders/*/*/*/com.apple.QuickLook.thumbnailcache. – Lri Nov 23 '11 at 20:55
1  
Nice read about where they come from. – slhck Nov 23 '11 at 20:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.