Android,删除我的数据目录中的文件?

发布于 2024-10-31 23:55:36 字数 271 浏览 4 评论 0原文

我的应用程序在应用程序的数据目录中存储了运行所需的一些文件

/data/data/com.example.myapp/files/filehere.file

当我的应用程序从市场更新时,清除数据目录中的文件并将它们更新为来自应用程序的最新文件非常重要刚刚下载的新包。

我的问题是,如何以编程方式删除相关目录中的文件?

或者,是否有一个替代目录可以存储文件,该文件在我的应用程序版本的生命周期内是持久的,但一旦安装更新就会被清除?

My application stores some files that are required for it to run in the data directory of the app

/data/data/com.example.myapp/files/filehere.file

When my application is updated from the market, it is important that I clear the files in the data directory, and update them to the latest ones from the new package that has just been downloaded.

My question is, how do I programatically delete the files in the directory in question?

Alternatively, is there an alternative directory that I can store the files in that are persistent across the lifetime of my application version, but will be cleared once an update is installed?

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

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

发布评论

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

评论(2

じее 2024-11-07 23:55:36
File file = new File(FILEPATH);
if(file.exists())
  file.delete();

至于你的最后一个问题,我的猜测是你必须在升级过程中控制它。 fe,为每个版本创建一个目录,并在用户升级时管理里面的文件。

File file = new File(FILEPATH);
if(file.exists())
  file.delete();

As for your last question, my guess is you'll have to control that on your upgrade process. f.e., create a directory for each version and manage the files inside when the user upgrades.

错々过的事 2024-11-07 23:55:36

您可能最好使用包含在 < 中的 数据库 a href="http://developer.android.com/reference/android/database/sqlite/SQLiteOpenHelper.html" rel="nofollow">SQLiteOpenHelper。然后,您可以使用 onUpgrade 函数来检测新的应用程序版本。

You might be better off using a database wrapped in SQLiteOpenHelper. You can then use the onUpgrade function to detect a new app version.

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