How to delete a folder in Android Studio emulator by using Android Device Manager? -


android device manager's file explorer lets me delete number of files on avds refuses rid of folders. specifically, minus sign icon hovering tooltip says "delete selection" stays grayed out no matter do. short of writing utility app i'm out of options :\ suggestions? little nifty command-line wizardry, perhaps?

how delete folder in android studio emulator using android device manager?

that's not available, sorry. ideally, be.

a little nifty command-line wizardry, perhaps?

adb shell gives linux shell onto device or emulator, so...

adb shell rmdir /whatever/the/directory/path/is 

would remove /whatever/the/directory/path/is. note adb program in sdk's platform-tools/ directory.


Popular posts from this blog