유니티 C# CSV 파일 저장, 불러오기 Read, Write 간단 사용법


유니티 C# CSV 파일 저장, 불러오기 Read, Write 간단 사용법

파일 저장 경로 불러오는 코드 작성 using System.IO; using UnityEngine; public static class SystemPath { public static string GetPath(string fileName) { string path = GetPath(); return Path.Combine(GetPath(), fileName); } public static string GetPath() { string path = null; switch (Application.platform) { case RuntimePlatform.Android: path = Application.persistentDataPath; path = path.Substring(0, path.LastInde..


원문링크 : 유니티 C# CSV 파일 저장, 불러오기 Read, Write 간단 사용법