Cant find the file i created on android tablet

后端 未结 1 1357
梦如初夏
梦如初夏 2021-01-28 03:37

/data directory in android is empty. I have installed a few applications and i also wrote code to create a file in /data/Myapp directory ,

I have these lines in OnCreate

相关标签:
1条回答
  • 2021-01-28 04:27

    On real device, you can't see these folders if it's not rooted. see this question.

    If you want to write files in your app directory, then your code is OK. You can check that it is there in the same way you created it - from your application:

    File myFile = new File(getFilesDir() + "/test1.txt");
    if (myFile.exists())
    {
      //Good!
    }
    
    0 讨论(0)
提交回复
热议问题