如何选定的文件从Android的亚行拉复制 [英] How to copy selected files from Android with adb pull

查看:139
本文介绍了如何选定的文件从Android的亚行拉复制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试使用ADB pull命令只有某些文件(JPG格式)复制到我的MacBook。我想亚行拉SD卡/ MYDIR / *。JPG,但它显然不跨$ P $磅常规EX pressions。我如何才能只JPG文件复制过来?我已经根深蒂固的手机有没有什么帮助。

I'm attempting to use the adb pull command to copy only certain files (jpg) to my macbook. I tried "adb pull sdcard/mydir/*.jpg" but it apparently doesn't interpret regular expressions. How can I get only the jpg files copied over? I have rooted the phone if that helps.

推荐答案

您可以将您的文件到其他文件夹,然后将整个文件夹。

You can move your files to other folder and then pull whole folder.


adb shell mkdir /sdcard/tmp
adb shell mv /sdcard/mydir/*.jpg /sdcard/tmp # move your jpegs to temporary dir
adb pull /sdcard/tmp/ # pull this directory (be sure to put '/' in the end)
adb shell mv /sdcard/tmp/* /sdcard/mydir/ # move them back
adb shell rmdir /sdcard/tmp # remove temporary directory

这篇关于如何选定的文件从Android的亚行拉复制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆