 |
 |
deleting .ds_store from inside application files
|
 |
|
 |
|
Senior User
Join Date: Jul 2004
Status:
Offline
|
|
i went inside an app file to edit it. Safari. and now theres a .ds_store in there. how do i get ride of this file? all the ds deleters dont delete the ds store from inside the application
|
|
|
| |
|
|
|
 |
|
 |
|
Clinically Insane
Join Date: Oct 2001
Location: San Diego, CA, USA
Status:
Offline
|
|
|
|
|
Chuck
___
"Instead of either 'multi-talented' or 'multitalented' use 'bisexual'."
|
| |
|
|
|
 |
|
 |
|
Senior User
Join Date: Jul 2004
Status:
Offline
|
|
what that do and were do i type it?
|
|
|
| |
|
|
|
 |
|
 |
|
Professional Poster
Join Date: Sep 1999
Location: Ottawa, ON, Canada
Status:
Offline
|
|
rm is a UNIX command.
In the Terminal, navigate to the directory that contains the .DS_Store file you wish to delete and type the rm command. rm means remove. Be careful, once it's gone, it's gone.
If you don't know how to do the above, then get the book UNIX for Mac Users (or something like that).
I was going to be snarky and tell you to stay out of .app files, but that's a good way to learn how the system works. So I will say "Make backups!" instead.
|
|
|
| |
|
|
|
 |
|
 |
|
Clinically Insane
Join Date: Oct 2001
Location: San Diego, CA, USA
Status:
Offline
|
|
.DS_Store files aren't really destructive (as far as I'm aware), though, so I don't know why it's a concern.
|
|
Chuck
___
"Instead of either 'multi-talented' or 'multitalented' use 'bisexual'."
|
| |
|
|
|
 |
|
 |
|
Senior User
Join Date: Nov 2001
Location: State of Denial
Status:
Offline
|
|
You don't need .DS_Store files in your apps at all; they're just (IIRC) for Finder window settings and the like.
You can also try:
Code:
find /path/to/app -name .DS_Store -exec rm {} \;
which will delete all .DS_Store files in the application bundle (make sure you don't mistype, though, just in case).
|
|
[Wevah setPostCount:[Wevah postCount] + 1];
|
| |
|
|
|
 |
|
 |
|
Senior User
Join Date: Jul 2004
Status:
Offline
|
|
|
|
|
|
| |
|
|
|
 |
 |
|
 |
|
|
|
|
|

|
|
 |
Forum Rules
|
 |
 |
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
|
HTML code is Off
|
|
|
|
|
|
 |
 |
 |
 |
|
 |
|