Comment effacer le fichier texte Swift
let text = ""
do {
try text.write(to: filePath, atomically: false, encoding: .utf8)
} catch {
print(error)
}
Quaint Quail