I create a file in android emulator, after that I try it on phone but I don’t have the same dir. Where can I find my file on PHONE?
public void costam (String text)
{
try {
FileOutputStream fOut = context.openFileOutput("samplefile.txt",
context.MODE_WORLD_READABLE);
OutputStreamWriter osw = new OutputStreamWriter(fOut);
osw.write(text);
osw.flush();
osw.close();
}catch(Exception e){ }
}
It’s here: