Francis Mariano
08/05/2024, 8:31 PMFrancis Mariano
08/05/2024, 9:13 PMprivate val path = Path("Documents", "test.txt")
SystemFileSystem.sink(path = path, append = true).buffered().use { sink ->
sink.writeString(message)
}
What is the correct way to write to Android/IOS filesystem??Michael Paus
08/06/2024, 9:48 AM