|
|
|
|
|
by lwerdna
1684 days ago
|
|
I use a python script that shells out to adb for what I want. Photos for example starts with a an "adb shell find /sdcard/DCIM/Camera -name .jpg -o -name .mp4" to collect a list, then iterates over that list with "adb pull -a <remote_path> <file>". It's primitive but works. |
|