Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where does a file get saved when openFileOutput is used? [duplicate]

Is it possible to know where a file which is created by

ApplicationContext.openFileOutput(filename, Context.MODE_WORLD_READABLE);

get stored? I dont need any java code to print me the path, that should be getFileStreamPath(filename), i just need the default storage location for such files. i didnt find any helpful things in the javadoc of android

like image 978
reox Avatar asked May 23 '12 11:05

reox


1 Answers

If you have a rooted phone, have a look at /data/data. There will be a folder with your package name with all your files you've saved.

But you will need root an a root explorer to watch these files.

like image 164
Fabian Avatar answered Oct 13 '22 08:10

Fabian