728x90
반응형
StreamWriter writer;
/*덮어쓰기*/writer = File.CreateText(path);
/*이어쓰기*/writer = File.AppendText(path);
writer.WriteLine("Test Text"); //저장될 string
writer.Close();
728x90
반응형
'Unity' 카테고리의 다른 글
[Unity] Unity Window Build 파일 SetFocus()/SetForeGround()하기 (1) | 2021.06.08 |
---|---|
[Unity] AR Foundation 물건 배치 (0) | 2021.05.09 |
Error building scripts: Data layout for script 'MyScript' has changed. Need to do a complete player export 에러 해결방법 (0) | 2021.03.14 |
[Unity] Github용 Ignore Edit (0) | 2021.02.23 |
[Unity] VR Camera Init하기(Position, Rotation) (0) | 2021.02.08 |