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.
Using adb shell with rm command you can delete(nonempty as well as empty) folders.
adb shell
rm
click Run -- > CMD--> type adb shell --> cd sdcard --> rm -r {dirname}