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

Single File/Folder using pull: adb pull “/sdcard/Folder1” Output: adb pull “/sdcard/Folder1” pull: building file list… pull: /sdcard/Folder1/image1.jpg -> ./image1.jpg pull: /sdcard/Folder1/image2.jpg -> ./image2.jpg pull: /sdcard/Folder1/image3.jpg -> ./image3.jpg 3 files pulled. 0 files skipped. Specific Files/Folders using find from BusyBox: adb shell find “/sdcard/Folder1” -iname “*.jpg” | tr -d ‘\015’ | while read line; do adb … Read more