Android,删除我的数据目录中的文件?
我的应用程序在应用程序的数据目录中存储了运行所需的一些文件
/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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
至于你的最后一个问题,我的猜测是你必须在升级过程中控制它。 fe,为每个版本创建一个目录,并在用户升级时管理里面的文件。
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.
您可能最好使用包含在 < 中的 数据库 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.