OTMXAttribute 0.0.3

OTMXAttribute 0.0.3

测试已测试
语言语言 Objective-CObjective C
许可证 MIT
发布日期最后发布2014年12月

未声明用户维护。



  • 贡献于
  • Otium

可以使用xattr命令用来显示,修改或删除一个或多个文件(包括目录和符号链接)的扩展属性。扩展属性是与文件关联的元数据,但独立于文件系统的属性(例如修改时间或文件大小)。这些元数据通常是一个空终止的UTF-8字符串,也可以是任意二进制数据。

示例

设置

BOOL success = [OTMXAttribute setAttributeAtPath:filePath name:myKey value:stringOrDataValue error:NULL];

获取

NSData *attribute = [OTMXAttribute attributeAtPath:filePath name:myKey error:NULL];
NSString *attributeAsString = [OTMXAttribute stringAttributeAtPath:filePath name:myKey error:NULL];

移除

BOOL success = [OTMXAttribute removeAttributeAtPath:filePath name:myKey error:NULL];

许可证

OTMXAttribute遵循MIT许可证发布。更多信息请见LICENSE