我正在尝试在内部存储上备份我的数据库文件:
(UInt32 *) (errorString + 1)
日志返回“69632”没有任何错误,所以看起来它有效。
问题是我找不到该文件。并且/ Android / data文件夹不包含具有我的应用程序包名称的文件夹。我做错了什么?
答案 0 :(得分:1)
使用
File toFile = new File(Environment.getExternalStorageDirectory()
+ File.separator + "Android/data" + File.separator + context.getPackageName() + File.separator + "/database.db");
context.getFilesDir() will give you the directory private to your app, so the files in that will not be available to other apps.