Reputation: 3155
I am creating file using following code
OutputStreamWriter out = new OutputStreamWriter(openFileOutput("try.txt",0));
// write the contents on mySettings to the file
out.write("erterter");
// close the file
out.close();
Upvotes: 3
Views: 1084
Reputation: 6862
Files created in this manner are stored in your application's private storage: /data/data/com.package/files
Upvotes: 3