How to access /storage/emulated/0/
Also you can use Android Debug Bridge (adb) to copy your file from Android device to folder on your PC:
adb pull /storage/emulated/0/AudioRecorder/1436854479696.mp4 <folder_on_your_PC_e.g. c:/temp>
And you can copy from device whole AudioRecorder
folder:
adb pull /storage/emulated/0/AudioRecorder <folder_on_your_PC_e.g. c:/temp>
No need for third party apps
My Android 6.0 allows me to browse the intern memory without the need for third party apps. I simply do this*:
- "Settings"
- "Storage and USB"
- "Intern"
- [let it load a bit...]
- [scroll all the way down]
- "Browse"
* Words may not correspond to the standard English version ones, since I'm just freely translating them from Portuguese.
Note: At least in my phone, /storage/emulated/0
does not correspond to SD card, but to intern memory. This method did not work for my external card, but I never tried it with another phone.
Hope this helps!