Get sdcard directory by adb

前端 未结 3 1035
离开以前
离开以前 2021-02-03 22:41

I am making an application, which pulls files(Saved by android app) from the device sdcard by adb. The problem is that different devices, have various sdcard directories

3条回答
  •  旧时难觅i
    2021-02-03 23:12

    If I've not misunderstood you, you're looking for something like:

    emanuele@Nabucodonosor:~$ adb shell cd \$EXTERNAL_STORAGE
    emanuele@Nabucodonosor:~$ adb shell ls \$EXTERNAL_STORAGE
    emanuele@Nabucodonosor:~$ adb shell echo \$EXTERNAL_STORAGE
    

提交回复
热议问题