I am writing an AndroidApp, where I save some Data by using the following File:
File File = new File(getFilesDir(), "Kategories.txt");
Then I create a FileWriter
and so on...
First of all: IT WORKS!!! The Data gets saved and when I reopen the app, the program is able to get the data out of the Storage.
BUT, I cant find the Data-Files in the Storage!!!
I have seached it everywhere! In the Internal Storage,
in storage/Android/data/ my package name
is not there...
Where could it be?!
PS: I use Android Studio:)