Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove Folders from DDMS

I need to remove a particular folder from the /mnt/sdcard/new.

I am looking at the folder with the DDMS in Eclipse.

How do we remove a particular folder.

Thanks in advance.

like image 540
Sekar Avatar asked Jul 06 '12 06:07

Sekar


1 Answers

You can use rm command with -r parameter to delete a nonempty folder.

C:\> adb shell
$ rm -r /mnt/sdcard/Android/data/mydirectory/

NOTE: rmdir can delete only a nonempty folder.

like image 122
Jainendra Avatar answered Oct 03 '22 16:10

Jainendra