我有一个带有注释作为扩展属性的文件。这就是我从终端查看属性的方式:
mdls -name kMDItemFinderComment path_to_file
我得到了答案
kMDItemFinderComment = "my_comment"
要将此文件复制到 new_location,同时保留此注释,我输入
cp -p path_to_file new_location
Everything似乎就像输入
mdls -name kMDItemFinderComment new_location
Returns一样工作
kMDItemFinderComment = "my_comment"
当我从 Finder 窗口访问 new_location 处复制的文件时,出现了问题。我单击“获取信息”,但“评论”部分为空。执行此操作后,当我再次尝试时,
mdls -name kMDItemFinderComment new_location
我得到
kMDItemFinderComment = (null)
谁能帮我?
PS:我应该使用xattr吗?