본문 바로가기
프로그래밍/Unity

txt 파일 생성

by neive 2021. 9. 9.
728x90
using System.IO;

    public void MakeTextFile(string name, List<string> list)
    {
        var filePath = $"{Application.dataPath}/{name}.txt";
        Debug.Log($"### SAVE @ {filePath}");

        StreamWriter fileWriter = File.CreateText(filePath);
        for (int i = 0; i < list.Count; i++)
        {
        	Debug.Log((string)list[i]);
        	fileWriter.WriteLine((string)list[i]);
        }
        fileWriter.Close();
    }

 

assets/패스 경로에 생깁니다

728x90

댓글