how could I create a PUBLIC folder in internal memory in android?

0

I managed to create the folder but private, that is, only the same app can see it and what I'm looking for is that it can be viewed from any file browser, internal memory not sd

   val directorio = File(filesDir, nombreDirectorio)


    if (!directorio.mkdirs()) {

        Log.e(TAG, "Error: No se creo el directorio en la memoria interna :(")
    }
    
asked by andres felipe padilla 21.06.2018 в 02:23
source

0 answers