我正在检查设备文件夹中的数据库是否存在。文件夹和数据库存在,但未找到。路径是正确的,那么我错在哪里?
private void checkDBexists() {
File internal = Environment.getExternalStorageDirectory();
File myFile = new File(internal.getAbsoluteFile() + "MyFolder/database.db");
if (myFile.exists()) {
importaDB();
} else {
Toast toast = Toast.makeText(getActivity().getApplicationContext(), "not work", Toast.LENGTH_SHORT);
toast.show();
}
}
答案 0 :(得分:0)
File myFile = new File(internal.getAbsoluteFile()+"/MyFolder/database.db");
添加" /"在MyFolder
之前。