gpt4 book ai didi

swift - 在 Swift 中设置文件属性

转载 作者:可可西里 更新时间:2023-11-01 00:37:08 25 4
gpt4 key购买 nike

如何在 Swift for OSX 中设置文件的文件属性(例如 NSCreationDate)?

我可以在 Objective-C 中做到这一点,但不知道如何在 Swift 中做到这一点。

最佳答案

对于 swift 3 使用:

//let path = "/path/to/file"

let attributes = [
FileAttributeKey.creationDate: NSDate(),
// FileAttributeKey.modificationDate: NSDate() for modification date...
]

do {
try FileManager.default.setAttributes(attributes, ofItemAtPath: path)
} catch {
print(error)
}

关于swift - 在 Swift 中设置文件属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33846694/

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