В андроиде создаётся много папок, из-за которых навигация по флэшке, мягко говоря, затруднена.
В итоге написал скриптик, который ставит ключевые папки на первое место с помощью восклицательных знаков в начале+монтирование.
Краткий вариант такой:
#!/system/bin/sh
#Structuria 0.1 http://dreamject.org/dreamjects/structuria/
#By Danila Isakov
#Base
mkdir '/mnt/sdcard/!Books'
mkdir '/mnt/sdcard/!DCIM'
mkdir '/mnt/sdcard/!Download'
mkdir '/mnt/sdcard/!Movies'
mkdir '/mnt/sdcard/!Music'
mkdir '/mnt/sdcard/!Pictures'
mkdir '/mnt/sdcard/!Recordings'
mkdir '/mnt/sdcard/!Telegram'
mkdir '/mnt/sdcard/!VK'
mount -o bind '/mnt/sdcard/Books' '/mnt/sdcard/!Books'
mount -o bind '/mnt/sdcard/DCIM' '/mnt/sdcard/!DCIM'
mount -o bind '/mnt/sdcard/Download' '/mnt/sdcard/!Download'
mount -o bind '/mnt/sdcard/Movies' '/mnt/sdcard/!Movies'
mount -o bind '/mnt/sdcard/Music' '/mnt/sdcard/!Music'
mount -o bind '/mnt/sdcard/Pictures' '/mnt/sdcard/!Pictures'
mount -o bind '/mnt/sdcard/Recordings' '/mnt/sdcard/!Recordings'
mount -o bind '/mnt/sdcard/Telegram' '/mnt/sdcard/!Telegram'
mount -o bind '/mnt/sdcard/VK' '/mnt/sdcard/!VK'
mkdir '/mnt/sdcard2/!Books'
mkdir '/mnt/sdcard2/!DCIM'
mkdir '/mnt/sdcard2/!Download'
mkdir '/mnt/sdcard2/!Movies'
mkdir '/mnt/sdcard2/!Music'
mkdir '/mnt/sdcard2/!Pictures'
mkdir '/mnt/sdcard2/!Recordings'
mkdir '/mnt/sdcard2/!Telegram'
mkdir '/mnt/sdcard2/!VK'
mount -o bind '/mnt/sdcard2/Books' '/mnt/sdcard2/!Books'
mount -o bind '/mnt/sdcard2/DCIM' '/mnt/sdcard2/!DCIM'
mount -o bind '/mnt/sdcard2/Download' '/mnt/sdcard2/!Download'
mount -o bind '/mnt/sdcard2/Movies' '/mnt/sdcard2/!Movies'
mount -o bind '/mnt/sdcard2/Music' '/mnt/sdcard2/!Music'
mount -o bind '/mnt/sdcard2/Pictures' '/mnt/sdcard2/!Pictures'
mount -o bind '/mnt/sdcard2/Recordings' '/mnt/sdcard2/!Recordings'
mount -o bind '/mnt/sdcard2/Telegram' '/mnt/sdcard2/!Telegram'
mount -o bind '/mnt/sdcard2/VK' '/mnt/sdcard2/!VK'
#▒▒Finiw▒▒▒
exit 0