If i copy the Images or files from mac to other os systems, it shows the files "._.DS_Store, .DS_Store"
in other os systems.How to stop it?
Asked
Active
Viewed 207 times
1 Answers
4
Adobe has some notes and a unix command on this subject. It seems that it could be run before taking the image or after restoring it (providing the destination is a unix-like system).
sudo find / -name ".DS_Store" -depth -exec rm {} \;

Peter Crotty
- 156
- 3
-
is there any option to restrict these files via samba while copying from mac to others? – Booth May 21 '15 at 13:41