유니티 C# 파일 저장 경로 System Path 간단 사용법


유니티 C# 파일 저장 경로 System Path 간단 사용법

코드 작성 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.Su..


원문링크 : 유니티 C# 파일 저장 경로 System Path 간단 사용법