string[] separators = new string[] { "Android" };
string[] paths = Application.persistentDataPath.Split(separators, System.StringSplitOptions.None);
string rootPath = paths[0] + "Folder/";
갤 노트 4에서 Application.persistentDataPath 는
/storage/emulated/0/Android/com.preject.Temp.apk
이런 식으로 경로 나옴.
위와 같이 Android로 자르면 path[0] 은 /storage/emulated/0/
sd card 경로가 됨
'unity tech.' 카테고리의 다른 글
R.java 관련 (0) | 2015.09.15 |
---|---|
Texture Type의 Texture와 Sprite 단순 차이 (0) | 2015.09.02 |
이미지 로드해서 Image에 적용 (0) | 2015.09.02 |
유니티 화면에서의 회전 값과 코드 상의 회전 값 (0) | 2015.08.31 |
자식 객체 Destroy 할 때 주의 (0) | 2015.08.31 |