string GetFilePath (string _fname) {
string _path = "";
if (Application.platform == RuntimePlatform.Android) {
_path = Application.persistentDataPath;
_path = _path.Substring (0, _path.LastIndexOf ('/'));
} else if (Application.platform == RuntimePlatform.IPhonePlayer) {
_path = Application.dataPath.Substring (0, Application.dataPath.Length - 5);
_path = _path.Substring (0, _path.LastIndexOf ('/'));
} else {
_path = Application.dataPath;
_path = _path.Substring (0, _path.LastIndexOf ('/'));
}
----
----
return Path.Combine (_path, _fname);
}
'Programming' 카테고리의 다른 글
아이폰에 프로비전 파일 넣기 (2019.11.23) (0) | 2019.11.23 |
---|---|
파일) Line단위로 쓰기 (0) | 2017.03.17 |
문자열) 숫자에 , (콤마) 넣기 (0) | 2017.03.17 |
스파인 애니메이션 셋팅값 설정 (0) | 2017.03.07 |
litjson 사용시 주의사항 (re:2019.05.07) (5) | 2016.11.26 |