Delete files from DDMS using command line?

I am trying to delete some files from DDMS. data/data/package_name/files/filenameHow can I do this?

+5
source share
3 answers

Use the Eclipse DDMS plugin file explorer or a command adb shellfrom your Android platform tools to view and delete the file system on your device.

+5
source

adb shell rm /yourpath/to/yourfilename

+13
source

ADB /, linux-.

rm, - ( , -r),.


Android-:

You can save files directly to the internal memory of the device. From default, files stored in the internal storage are private to your application and other applications cannot access them (and the user). When a user uninstalls your application, these files are deleted.

This can help you. You can also check if you can “delete application data” in Androids Application Manager.

+4
source

All Articles