📅  最后修改于: 2022-03-11 14:55:40.794000             🧑  作者: Mango
let homePath = FileManager.default.homeDirectoryForCurrentUser
let desktopPath = homePath.appendingPathComponent("Desktop")
print(desktopPath)
let filePath = desktopPath.appendingPathComponent("TestFile.txt")
do {
try unicodeString.write(to: filePath, atomically: false, encoding: .utf8)
} catch {
errorMessage = error.localizedDescription + "\n" + unicodeString
}