When creating a file using android.content.Context.openFileOutput("test.txt", 0), where is the file created?
When creating a file using android.content.Context.openFileOutput("test.txt", 0), where is the file created?
When creating a file using android.content.Context.openFileOutput("test.txt", 0), the file is created in the /data/data/<package name>/files directory. This is the default internal storage directory for a specific application's private files in Android.
B. /data/data/<package name>/files