如何将文件从计算机推送到其中没有SD卡的android设备。我试过了:
C:\anand>adb push anand.jpg /data/local
3399 KB/s (111387 bytes in 0.032s)
C:\anand>adb push anand.jpg /data/opt
3199 KB/s (111387 bytes in 0.034s)
C:\anand>adb push anand.jpg /data/tmp
3884 KB/s (111387 bytes in 0.028s)
上面的命令将文件移动anand.jpg
到设备,但我没有jpg
在设备中获取此文件。我在cmd提示符下未获得任何成功结果,我只有:
3399 KB/s (111387 bytes in 0.032s).
adb shell "cd /sdcard && mkdir temp"
然后abd push x.apk /sdcard/temp"
,我将文件保存在sdcard上的temp文件夹中,并能够从那里进行刷新。
adb shell "cd /data/local && mkdir tmp"
然后尝试adb push anand.jpg /data/local/tmp
。如何使用来检查设备上的文件adb shell
?