I would like to save the BD of my mobile application in another folder that was not the normal path of / data / .., for example in the sdcard in a route that I can specify.
I would like to save the BD of my mobile application in another folder that was not the normal path of / data / .., for example in the sdcard in a route that I can specify.
You can specify the external storage path:
String nombreDirectorio = "basededatos/";
String nombreDB = "datos.db";
String ruta = Environment.getExternalStorageDirectory().getPath() + File.separator + nombreDirectorio + nombreDB;