如何删除模拟器SD卡上保存的文件?

发布于 2024-12-17 06:49:46 字数 87 浏览 0 评论 0原文

在我的应用程序中,我将把资产中的文件存储到 SDCard。但现在模拟器中已经没有空间了。所以我想删除那个文件。

那么如何从模拟器中删除该文件呢?

In my application I am going to store the file from assets to the SDCard. But now there is no more space in the emulator. So I want to delete that file.

So how to delete that file from the Emulator?

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

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

发布评论

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

评论(2

夜血缘 2024-12-24 06:49:46

选项 1:

转到

Windows XP

中的 Avd 文件夹C:\Documents and Settings{当前用户}.android\avd{avd 名称}\

Vista/Win7

C:\Users{当前用户}.android\avd{avd 名称}\

删除sdcard.img 文件...当您下次运行模拟器时,它将创建新的 sdcard

选项 2:

如果您想从 sdcard 中删除特定文件,

请打开命令提示符并 类型

亚行外壳

cd \mnt\sdcard

rm {文件名}

Option 1:

Go to Avd folder in

Windows XP

C:\Documents and Settings{current user}.android\avd{avd name}\

Vista/Win7

C:\Users{current user}.android\avd{avd name}\

Delete the sdcard.img file... when you run the emulator next time, it will create new sdcard

Option 2:

If you want to delete specific files from sdcard then

Open your command prompt and type

adb shell

cd \mnt\sdcard

rm {filename}

雨的味道风的声音 2024-12-24 06:49:46

您可以从 DDMS 执行此操作。确保您的模拟器正在运行。

  1. 转到 Eclipse 中的 DDMS 透视图。
  2. 在“设备”窗口中选择您的模拟器
  3. ,然后转到“窗口”-->“显示视图”-->“文件资源管理器”
  4. 打开 sdcard 文件夹并删除所需的文件。

You can do this from DDMS. Ensure your emulator is running.

  1. Go to DDMS perspective in eclipse.
  2. In the Devices window select your emulator
  3. Then go to Window-->Show View-->FIle Explorer
  4. Open the sdcard folder and delete the files you want.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文