How do I adb pull ALL files of a folder present in SD Card

后端 未结 7 1970
傲寒
傲寒 2020-12-12 12:45

I have a folder in my SD Card as: /mnt/sdcard/Folder1/Folder2/Folder3/*.jpg

The name of Folder1 and Folder2 remains constant and inside Folder2 I have F

7条回答
  •  离开以前
    2020-12-12 13:17

    Directory pull is available on new android tools. ( I don't know from which version it was added, but its working on latest ADT 21.1 )

    adb pull /sdcard/Robotium-Screenshots
    pull: building file list...
    pull: /sdcard/Robotium-Screenshots/090313-110415.jpg -> ./090313-110415.jpg
    pull: /sdcard/Robotium-Screenshots/090313-110412.jpg -> ./090313-110412.jpg
    pull: /sdcard/Robotium-Screenshots/090313-110408.jpg -> ./090313-110408.jpg
    pull: /sdcard/Robotium-Screenshots/090313-110406.jpg -> ./090313-110406.jpg
    pull: /sdcard/Robotium-Screenshots/090313-110404.jpg -> ./090313-110404.jpg
    5 files pulled. 0 files skipped.
    61 KB/s (338736 bytes in 5.409s)
    

提交回复
热议问题