Can I save the BD SQLite in android in another route instead of / Data / ...?

3

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.

    
asked by Jorge Luis Pilo Torres 26.10.2016 в 02:43
source

1 answer

2

You can specify the external storage path:

String nombreDirectorio = "basededatos/";
String nombreDB = "datos.db";

String ruta = Environment.getExternalStorageDirectory().getPath() +  File.separator + nombreDirectorio + nombreDB;
    
answered by 26.10.2016 в 02:55