วิธีการส่งไฟล์จากคอมพิวเตอร์ไปยังอุปกรณ์ Android ที่ไม่มี SD Card ฉันเหนื่อย:
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"
ฉันก็ลงเอยด้วยไฟล์ของฉันในโฟลเดอร์ temp บน sdcard ของฉันและสามารถแฟลชได้จากที่นั่น
adb shell "cd /data/local && mkdir tmp"
adb push anand.jpg /data/local/tmp
คุณจะตรวจสอบไฟล์ในอุปกรณ์ได้adb shell
อย่างไร?