Android Eclipse DDMS - 如何删除设备上的目录?

发布于 2024-12-13 06:28:21 字数 179 浏览 2 评论 0原文

使用Eclipse中的DDMS Perspective,可以删除手机上的目录吗?您绝对可以选择并删除文件,但我似乎无法删除任何目录。我想出的唯一方法是在命令提示符下:

C:\>adb shell
$ rmdir /mnt/sdcard/Android/data/mydirectory/

Using the DDMS Perspective in Eclipse, can you delete directories on the phone? You can definitely select and delete files, but I can't seem to delete any directories. The only way I have figured out how to is at the command prompt:

C:\>adb shell
$ rmdir /mnt/sdcard/Android/data/mydirectory/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

幽梦紫曦~ 2024-12-20 06:28:21

我不知道 android 插件是否支持您正在寻找的选项。但我可以告诉你,这也取决于设备。例如,在已root的手机上,您可以使用HierarchyViewer,也可以在模拟器上使用,但此工具不适用于未root的设备。

您应该考虑到,也许您无法删除,因为您的手机尚未root。这是针对内部存储的,对于外部存储,您应该考虑您的手机是否以仅充电模式或光盘存储模式与电脑连接。如果您使用仅收费模式连接,则可能无法选择删除文件...

同样,我没有给您正确的答案,但我给了您一些您绝对应该考虑的提示。

I do not know if the android plugin supports the option you are looking for. But I can tell you that it depends on the device also. For example on rooted phones you can use HierarchyViewer and also on the emulator , but this tool will not work with none rooted devices.

You should consider that maybe you are not able to delete because your phone is not rooted. This is for the internal storage, and for external you should consider if your phone is connected with your pc with charge only mode or with disc storage mode. If you connect with charge only mode maybe there will be no-option for deleting files...

Again I do not have you the right answer but I gave you some tips you should definitely consider.

随波逐流 2024-12-20 06:28:21
  • 使用“adb shell %your device%”转到要删除的文件夹并
  • 使用“rmdir %folder name%”(确保该文件夹为空)
  • Use "adb shell %your device%" go to the folder you want to delete and
  • use 'rmdir %folder name%' ( make sure the folder is empty )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文