How to delete folders in sdcard of file explorer?

后端 未结 6 967
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-02 06:53

I created several folders in the sdcard (Eclipse) by running an Android application in the emulator. Now I want to delete the folders which I have created on the sdcard.

6条回答
  •  佛祖请我去吃肉
    2021-02-02 07:12

    Using adb command you can delete folders.

    click Run - > CMD-> type adb shell --> cd sdcard -> rmdir {dirname}

    Note : Make sure your dir should be empty.

    For non-empty directory use.

    click Run - > CMD-> type adb shell --> cd sdcard -> rm -r {dirname}

提交回复
热议问题