gpt4 book ai didi

ios - 编写扩展文件属性 swift 示例

转载 作者:IT王子 更新时间:2023-10-29 05:22:35 28 4
gpt4 key购买 nike

我正在寻找一种解决方案来快速为文件添加扩展文件属性。我检查了这个链接 Write extended file attributes ,但解决方案在 objective-c 中,我需要一个 swift 的解决方案。

最佳答案

这里是 Swift 5 中的一个可能实现,作为 URL 的扩展,具有获取、设置、列出和删除扩展属性的方法一份文件。 (Swift 2、3、4代码可以在编辑历史中找到。)

extension URL {

/// Get extended attribute.
func extendedAttribute(forName name: String) throws -> Data {

let data = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> Data in

// Determine attribute size:
let length = getxattr(fileSystemPath, name, nil, 0, 0, 0)
guard length >= 0 else { throw URL.posixError(errno) }

// Create buffer with required size:
var data = Data(count: length)

// Retrieve attribute:
let result = data.withUnsafeMutableBytes { [count = data.count] in
getxattr(fileSystemPath, name, $0.baseAddress, count, 0, 0)
}
guard result >= 0 else { throw URL.posixError(errno) }
return data
}
return data
}

/// Set extended attribute.
func setExtendedAttribute(data: Data, forName name: String) throws {

try self.withUnsafeFileSystemRepresentation { fileSystemPath in
let result = data.withUnsafeBytes {
setxattr(fileSystemPath, name, $0.baseAddress, data.count, 0, 0)
}
guard result >= 0 else { throw URL.posixError(errno) }
}
}

/// Remove extended attribute.
func removeExtendedAttribute(forName name: String) throws {

try self.withUnsafeFileSystemRepresentation { fileSystemPath in
let result = removexattr(fileSystemPath, name, 0)
guard result >= 0 else { throw URL.posixError(errno) }
}
}

/// Get list of all extended attributes.
func listExtendedAttributes() throws -> [String] {

let list = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> [String] in
let length = listxattr(fileSystemPath, nil, 0, 0)
guard length >= 0 else { throw URL.posixError(errno) }

// Create buffer with required size:
var namebuf = Array<CChar>(repeating: 0, count: length)

// Retrieve attribute list:
let result = listxattr(fileSystemPath, &namebuf, namebuf.count, 0)
guard result >= 0 else { throw URL.posixError(errno) }

// Extract attribute names:
let list = namebuf.split(separator: 0).compactMap {
$0.withUnsafeBufferPointer {
$0.withMemoryRebound(to: UInt8.self) {
String(bytes: $0, encoding: .utf8)
}
}
}
return list
}
return list
}

/// Helper function to create an NSError from a Unix errno.
private static func posixError(_ err: Int32) -> NSError {
return NSError(domain: NSPOSIXErrorDomain, code: Int(err),
userInfo: [NSLocalizedDescriptionKey: String(cString: strerror(err))])
}
}

示例用法:

let fileURL = URL(fileURLWithPath: "/path/to/file")

let attr1 = "com.myCompany.myAttribute"
let attr2 = "com.myCompany.otherAttribute"

let data1 = Data([1, 2, 3, 4])
let data2 = Data([5, 6, 7, 8, 9])

do {
// Set attributes:
try fileURL.setExtendedAttribute(data: data1, forName: attr1)
try fileURL.setExtendedAttribute(data: data2, forName: attr2)

// List attributes:
let list = try fileURL.listExtendedAttributes()
print(list)
// ["com.myCompany.myAttribute", "com.myCompany.otherAttribute", "other"]

let data1a = try fileURL.extendedAttribute(forName: attr1)
print(data1a as NSData)
// <01020304>

// Remove attributes
for attr in list {
try fileURL.removeExtendedAttribute(forName: attr)
}

} catch let error {
print(error.localizedDescription)
}

关于ios - 编写扩展文件属性 swift 示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38343186/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com