I'm cleaning up some files that have been handled by Mac OS X. This is also the destination for FTP transfers. I know about .DS_Store
files. However I'm seeing some ._XXXX
files, ie. files that are prefixed with a dot and an underscore. Is that some sort of Mac OS X backup / transfer file? Where would they come from?
Asked
Active
Viewed 1,553 times
1
voretaq7
- 79,345
- 17
- 128
- 213
Amandasaurus
- 30,211
- 62
- 184
- 246
4 Answers
12
Yes, this is an OSX thing and is related to the AppleDouble File Format. When OSX writes to a non-native file system (so not HFS), that does not support resource forks, it writes extended info such as finder information in a "._" hidden file.
Sam Cogan
- 38,158
- 6
- 77
- 113
1
If the files are visible on a Mac, the dot_clean command line tool might help. There is a man page.
Steve Folly
- 545
- 3
- 12
-1
Those files are indeed from Mac OS X. I imagine they're a metadata file of some kind, but I don't know what they do. I do know, however, that they can be successfully deleted without any negative repercussions .
Kevin M
- 2,302
- 1
- 16
- 21
-
2It's not always safe to delete the AppleDouble (._) files -- they contain, among other things, the resource fork and extended attributes of the original file. Apple has deprecated resource forks, but they're still used for some things (e.g. aliases and .webloc files store their target info in the resource fork). Extended attributes, on the other hand, seem to be getting more and more important... – Gordon Davisson Jun 29 '09 at 18:39