使用命令提示符从 DDMS 删除文件?
我正在尝试从 DDMS data/data/package_name/files/filename
中删除一些文件,我该如何执行此操作?
I'm trying to delete some files from DDMS data/data/package_name/files/filename
How can i done this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
adb shell rm /yourpath/to/yourfilename
adb shell rm /yourpath/to/yourfilename
使用 Eclipse DDMS 插件的文件资源管理器或 Android 平台工具中的
adb shell
命令来浏览和删除设备上的文件系统。Use the File Explorer of the Eclipse DDMS plugin or the
adb shell
command from your android platform tools to browse and delete the file system on your device.您可以使用ADB进入设备/模拟器 shell,然后执行正常的 linux 命令。
在您的情况下,您将使用
rm
删除某些内容(如果要删除文件夹,请使用-r
参数)。来自 Android 文档:
这可能对您有帮助。您还可以在 Android 应用程序管理器中检查是否可以“删除应用程序数据”。
You can use ADB to get into the device/emulator shell and then execute normal linux-commands.
In your case, you would use
rm
to remove something (if you want to remove a folder use the-r
parameter).From the Android Docs:
This might help you. You can also check if you can "delete application data" in Androids Application Manager.