write private file to internal storage

piojo picture piojo · Jul 21, 2011 · Viewed 8.9k times · Source

I trying to write some files on the internal storage.

I saw theFileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE); on Data Storage and I understood that the file will be private to my application.

but the problem is it can only open a file without a path, so first I opened a new directory file with file.mkdir(), but now, how do I write the file as private ?

Answer

CommonsWare picture CommonsWare · Jul 21, 2011

I saw theFileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE); on Data Storage and I understood that the file will be private to my application.

Correct. They will be private by default.

but the problem is it can only open a file without a path, so first I opened a new directory file with file.mkdir(), but now, how do I write the file as private ?

Your files that you create in subdirectories off of in getFilesDir() are private by default -- you do not have to do anything special to make them be private.