Necesito ver un archivo en /data/misc/wifi/ en Android, pero no tengo esas carpetas, ¿qué carpeta debo buscar?

Supongo que estás buscando el archivo wpa_supplicant.conf, para poder ver las contraseñas guardadas de tus redes WiFi previamente conectadas.

En primer lugar necesitas tener el acceso root en el dispositivo.

Algunas ubicaciones comunes conocidas son

/etc/wifi/wpa_supplicant.conf

/system/etc/wifi/wpa_supplicant.conf (este es el enlace simbólico de la ubicación anterior)

Así que si usted está buscando específicamente el archivo mencionado anteriormente, también puede hacerlo utilizando el emulador de terminal en android. You can fetch the file & store it on your external storage by a specific name.

“su” command to gain root access on the Terminal Emulator.

  1. u0_a125@android:/ $ su -c "cat /data/misc/wifi/wpa_supplicant.conf > /storage/sdcard1/wifi.txt" 

You can then view the contents of the saved “wifi.txt” file using a note editor app.

And later on if you want to restore it, then you can use

  1. u0_a125@android:/ $ su -c "cp /storage/sdcard1/wifi.txt /data/misc/wifi/wpa_supplicant.conf" 

.

.

The locations to the wpa_supplicant.conf file sometimes vary on particular devices, based on the OS version being currently installed on the device.

Or you can just go to the root directory “/” and make use of the search option to find the specific file you are looking for. It may take sometime depending upon the volume of files in the root directory. But it does return appropriate results.

.

.

Thanks for reading 🙂