Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

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

share|improve this question

1 Answer

up vote 5 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.

share|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. – Lauri Ranta Nov 23 '11 at 20:55
1  
Nice read about where they come from. – slhck Nov 23 '11 at 20:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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