Can we avoid creating them on Mac OS?
The answer is NO.How can we get rid of them then?
There are many ways to find & remove them:- Method 1: Use find command in Terminal:
find /Volumes/USB-DISK -name '._*' -type f -delete
- Method 2(Recomended): Since Mac OS 10.5 Leopard, it come with a command line utility dot_clean to get rid of the ._ files. Run the following command in Terminal will remove all the ._ files in /Volumes/USB-DISK:
dot_clean /Volumes/USB-DISK
No comments:
Post a Comment