UWP 에서 Streamwriter writeline 처럼 줄 단위로 파일에 문자열을 쓰는 방법 입니다. 결론 적으로 FileIO.WriteLInesAsync FileIO.AppendLinesAsync 의 사용법입니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 private StorageFolder FolderPath = ApplicationData.Current.LocalCacheFolder; public async void WriteLine(string str) { string fileName = "file.txt"; string filePath = FolderPath.Path + "/" + fileName; var listofstrings = new..