且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

特殊文件夹.个人位置

更新时间:2023-11-29 15:17:34

System.Environment.SpecialFolder.Personal 类型映射到路径 /data/data/[your.package.名称]/文件代码>.这是您的应用程序的私有目录,因此您将无法使用文件浏览器查看这些文件,除非它具有 root 权限.

The System.Environment.SpecialFolder.Personal type maps to the path /data/data/[your.package.name]/files. This is a private directory to your application so you won't be able to see these files using a file browser unless it has root privileges.

您可以通过以下命令通过 adb 检查这些文件:

You can inspect these files through adb through the following commands:

adb shell
run-as your.package.name
cd files