如何在 Android 2.2 中以编程方式删除 sdcard 的全部内容
我希望在 Android 2.2 中以编程方式删除用户的整个 SD 卡。
最简单的方法是什么?
它需要root权限吗?
我可以只执行“rm -rf /mnt/sdcard”还是必须进行递归循环?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Java 删除目录。如果它们不为空,则必须递归执行此操作: http://www. exampledepot.com/egs/java.io/DeleteDir.html
否。所有应用程序都具有对外部存储的完全RW 访问权限。
是的,您可以执行 shell 命令(但您必须检查“rm”是否可用):有什么方法可以在 android 上以编程方式运行 shell 命令吗?
href=" https://stackoverflow.com/questions/3350283/any-way-to-run-shell-commands-on-android-programmatically 可用命令:如何获取信息关于 Android shell 中可用命令的 shell?
You can delete directories with Java. You have to do it recursively if they are not empty: http://www.exampledepot.com/egs/java.io/DeleteDir.html
No. All applications have full RW access to external storage.
Yes you can execute shell commands (but you'll have to check if "rm" is available): Any way to run shell commands on android programmatically?
Checking for available commands: How can I get information from the shell about commands available in Android shell?
不要运行 shell 命令,它们不是 SDK 的一部分。您的应用程序很可能会在某些没有您正在运行的 shell 命令的设备上崩溃。使用 Java 文件 API 可以轻松地遍历所有文件并删除它们。
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.