使用命令提示符从 DDMS 删除文件?

发布于 2024-12-04 07:50:57 字数 88 浏览 0 评论 0原文

我正在尝试从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

掩于岁月 2024-12-11 07:50:57

adb shell rm /yourpath/to/yourfilename

adb shell rm /yourpath/to/yourfilename

清风疏影 2024-12-11 07:50:57

使用 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.

玉环 2024-12-11 07:50:57

您可以使用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:

Internal Storage

You can save files directly on the device's internal storage. By
default, files saved to the internal storage are private to your
application and other applications cannot access them (nor can the
user). When the user uninstalls your application, these files are
removed.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文