Mihir Bhatt
Mihir Bhatt

Reputation: 3155

where created files are stored physically in android?

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

Answers (1)

nEx.Software
nEx.Software

Reputation: 6862

Files created in this manner are stored in your application's private storage: /data/data/com.package/files

Upvotes: 3

Related Questions