Note to self: resource forks on modern macOS
On a modern macOS system, you can investigate and log Type and Creator codes using the mdls
(metadata listing) command in Terminal, like so:
mdls /path/to/file
This command lists all metadata associated with the file. The ones I want are:
kMDItemFSTypeCode
: This is the file type code.kMDItemFSCreatorCode
: This is the creator code.
These attributes can be verified on Classic with ResEdit.
Comments
Post a Comment