1

I installed my android app(apk file) on my phone, when I go to my files: i can't find my com.myappnamefoler.net in folder(/sdcard/Android/data). is there a default path?

shankz
  • 107
  • 2
  • 3
  • 9

3 Answers3

1

You should find in /system/app or /data/app

Jav_Rock
  • 21,011
  • 18
  • 115
  • 164
Kani
  • 159
  • 1
  • 4
  • 2
    unless your phone is rooted, you cannot access /data/app/ where installed applications are present , this path is protected. – nandeesh Sep 26 '12 at 08:01
0

check in data/data/com.myappnamefoler.net

Keshav OS
  • 171
  • 1
  • 10
0

If you saved the files in the folder provided by getFilesDir() , it will be in the folder /data/data/<your.package.name>/files in the root of your system, not on your sdcard. (To view this, your phone needs to be rooted)

If you saved the files in the folder provided by getExternalFilesDir(), it will be in the folder /sdcard/Android/data, /sdcard0/Android/data or a similar directory.

Chris
  • 229
  • 2
  • 14