swift2 如何使用swift 4.0语言删除文件内容

pcrecxhr  于 2022-11-06  发布在  Swift
关注(0)|答案(2)|浏览(159)

我只想知道删除目录中现有文件内容的代码

tgabmvqs

tgabmvqs1#

就像你在每种编程语言中通常做的那样-通过覆盖旧的文件来创建一个新的空文件。

i1icjdpr

i1icjdpr2#

如果您有该文件的URL,则只需将其内容替换为空字符串即可:

雨燕2

do {
    try "".writeToURL(path, atomically: true, encoding: NSUTF8StringEncoding)
} catch let error {
    print(error)
}

雨燕3+**

do {
    try "".write(to: fileURL, atomically: true, encoding: .utf8)
} catch let error {
    print(error)
}

了解更多关于write(toFile:atomically:)here的信息。

相关问题