1

I'm using eclipse to run developing apk.

I can delete file that apk created into from mnt/sdcard-

But i'm not able to delete create folders. The red minus icon is grayed and disabled when I click on a folder, but it's enabled and red when i click on a file.

So, how to delete a folder ? I cannot destroy sdcard every time, i'm downloading a very complex folder structure

realtebo
  • 23,922
  • 37
  • 112
  • 189

1 Answers1

8

You can connect to the Android Emulator instance via adb. This allows you to delete files and folder via command-line.

Just execute adb shell rm -r /mnt/sdcard/yourfoldername

Robert
  • 39,162
  • 17
  • 99
  • 152
  • Is there really no way to delete from explorer ? Why is the motivation to disallow this ? – realtebo Sep 07 '12 at 06:45
  • 1
    Android File Explorer is an open source project. If you think this is a bug you should open a bug request in the [issue tracker](http://code.google.com/p/android-file-explorer/issues/list). – Robert Sep 07 '12 at 07:29