日常小tip记录

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_33666539/article/details/82501201

Android各种目录的区别

context.getDir("test", MODE_PRIVATE).getAbsolutePath()  
---->  /data/user/0/<packagename>/app_test

context.getFilesDir().getAbsolutePath()
----> /data/user/0/<packagename>/files

context.getApplicationInfo().dataDir
----> /data/user/0/<packagename>

没有root的手机怎么查看data目录

adb shell
run-as <packagename>
ls -l
total 96
drwxrwx--x 2 u0_a399 u0_a399 4096 2018-09-07 18:43 app_test
drwxrwx--x 2 u0_a399 u0_a399 4096 2018-09-07 15:15 cache
drwxrwx--x 2 u0_a399 u0_a399 4096 2018-09-07 15:15 code_cache
drwxrwx--x 2 u0_a399 u0_a399 4096 2018-09-07 15:15 files
drwx------ 3 u0_a399 u0_a399 4096 2018-09-07 15:15 patch_cache
drwxrwx--x 2 u0_a399 u0_a399 4096 2018-09-07 15:15 shared_prefs

猜你喜欢

转载自blog.csdn.net/qq_33666539/article/details/82501201
TIP
今日推荐