|
|
#1 |
|
Prospect
Join Date: Jan 2002
Posts: 3
|
DS_Store
What information is stored in .DS_Store files?
What would be the command in the Terminal to delete all the .DS_Store files on my hard drive. Is it safe to do so? |
|
|
|
|
|
#2 |
|
League Commissioner
Join Date: Jan 2002
Posts: 5,536
|
evidently, that file stores finder window preferences like view as ..., toolbar focus, etc.
% find / -name .DS_Store -exec rm -i {} \; the -i switch will ask "remove /pathTo/.DS_Store? " for each file it finds. this will gak at directories which you don't have permission to process. sudo find will get you into those directories. safe? fairly. unless your database is named thusly. |
|
|
|
|
|
#3 |
|
Prospect
Join Date: Jan 2002
Posts: 3
|
You'll be happy to know, I tried it, and it appears to have worked.
All those pesky invisible .DS_Store files on my hard drive are gone, and after several days of continuous use, no ill effects that I can detect. |
|
|
|
|
|
#4 |
|
Registered User
Join Date: Oct 2006
Posts: 1
|
Check out this link
http://mac.softpedia.com/get/System-...-Remover.shtml an app that will remove .DS_Store files painlessly |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|