What is the best way to pull multiple files using
adb pull
I have on my /sdcard/
25 files with following name:
In Android, there are some folder with associated permissions! Some folder belong to root- or system user.
You guys should change the permissions of those files, folders before doing "adb pull".
The following commands could help:
adb shell
su
chmod -R 777 target_folder
exit
...
adb pull /.../target_folder/ . (current local folder)