- Home /
How to Write Data to SDcard On Android??
path = Path.Combine(Application.streamingAssetsPath, "ScoreData.txt"); if (!File.Exists(path)) { string str = "Sdcard"; using (StreamWriter sw = File.CreateText(path)) { sw.Write(str); } } I Used IO. class,But Can't writer to Sdcard....
Comment
Answer by Haru · May 30, 2012 at 12:58 AM
i got it Application. persistentDataPath
if u fine your answer please share it because i have the same problem in finding strea$$anonymous$$g assets folder in apk for reading my data
Your answer