开始shell命令
adb shell
进入sdcard目录
cd sdcard
推送文件到设备
adb push c:\a.txt /sdcard/
拉取文件到电脑
adb pull /sdcard/a.txt c:\
删除文件
rm -r 文件夹名称