■ PathIO 클래스의 WriteTextAsync 정적 메소드를 사용해 텍스트 파일을 쓰는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 |
using Windows.Storage; await PathIO.WriteTextAsync("ms-appdata:///local/sample.txt", "샘플 데이터 입니다."); |
■ PathIO 클래스의 WriteTextAsync 정적 메소드를 사용해 텍스트 파일을 쓰는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 |
using Windows.Storage; await PathIO.WriteTextAsync("ms-appdata:///local/sample.txt", "샘플 데이터 입니다."); |