How to delete folders in sdcard of file explorer?

后端 未结 6 957
爱一瞬间的悲伤
爱一瞬间的悲伤 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条回答
  •  梦毁少年i
    2021-02-02 07:16

    1. remount the sdcard with read and write permission: adb shell mount -o remount,rw /

    2. Go to adb shell: adb shell

    3. Delete file you want: rm -r /sdcard/file_name

    It will work most better.

提交回复
热议问题