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…

i got it
Application. persistentDataPath