Adb - media store 相关
1. 查询数据
adb shell content query --uri content://media/external/file/ --projection _data --user 0
2. 删除用户
pm list users
pm remove-user ID
https://stackoverflow.com/questions/63448483/how-to-remove-a-stored-user-account-in-adb
3. 查询进程 GID / OWN
ls -l
ls -an
drwx------ 9 a233 media_rw //media_rw is 1023
4. 更改文件的OwnerId/ GroupId / 访问权限
chgrp 10233 baidu
chown 10233 baidu
chmod 700 baidu
5. 根据进程号,查看进程名
ps -A | grep -i a233
6. chown web link
https://man7.org/linux/man-pages/man2/chown.2.html
If the owner or group is specified as -1, then that ID is not
changed.
7. chmod web link
https://linux.die.net/man/2/chmod
8. 查询data
https://www.reddit.com/r/Android/comments/j3zgmm/managing_files_in_the_androiddata_folder_on/