How to delete folders in sdcard of file explorer?

后端 未结 6 1006
爱一瞬间的悲伤
爱一瞬间的悲伤 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:21

    Using adb shell with rm command you can delete(nonempty as well as empty) folders.

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

提交回复
热议问题