I wish to delete the users entire SDcard programmatically in Android 2.2.
What is the easiest way to do this?
Will it require root rights?
Can I just do an "rm -rf /mnt/sdcard" or do I have to make a recursive loop?
|
I wish to delete the users entire SDcard programmatically in Android 2.2.
|
||||
|
|
Checking for available commands: How can I get information from the shell about commands available in Android shell? |
|||
|
|
|
Don't run shell commands, they are not part of the SDK. There is a good chance your app will break on some devices that don't have whatever shell command you are running. It is easy to use the Java file APIs to iterate through all files and delete them. |
|||
|
|