android adb pull 文件夹,android – 我如何adb拉SD文件夹中的所有文件

单文件/文件夹使用拉:

adb pull "/sdcard/Folder1"

输出:

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.

特定文件/文件夹使用find从BusyBox:

adb shell find "/sdcard/Folder1" -iname "*.jpg" | tr -d '\015' | while read line; do adb pull $line; done;

这里有一个解释:

adb shell find "/sdcard/Folder1" - use the find command, use the top folder

-iname "*.jpg" - filter the output to only *.jpg files

| - passes data(output) from one command to another

tr -d '\015' - explained here: http://stackoverflow.com/questions/9664086/bash-is-removing-commands-in-while

while read line; - while loop to read input of previous commands

do adb pull $line; done; - pull the files into the current running directory, finish

脚本将在顶部文件夹中开始,并递归下来,找到所有的“* .jpg”文件,并将它们从手机中拖到当前目录。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值