Android can't find file:///storage/emulated
See original GitHub issueHi,
On android I have an error when trying to upload a file created with react-native-camera:
Upload error! Error: Could not find file at path: file://storage/emulated/0/Movies/VID_20170202_094146.mp4 the path
Any idea ?
Issue Analytics
- State:
- Created 7 years ago
- Reactions:3
- Comments:12 (7 by maintainers)
Top Results From Across the Web
What is Android storage/emulated/0? (The Complete Guide)
Download and install X-Plore File Manager from the Google Play Store. · Launch the application. · Go to the homepage. · Select "Internal...
Read more >What Is /storage/emulated/0/? How To Access It? | Yoodley
The easiest way to access /storage/emulated/0/ on an Android device is to download a third-party File Explorer such as ES File Explorer. However ......
Read more >How Do I Access Emulated Storage On Android? - Definir Tech
Download ES FILE EXPLORER from Play Store. · Find "Favourites" in top left corner section. · Add your own favourite folder by tapping...
Read more >How can I access /storage/emulated/0/DCIM on android device?
Go to Settings -> Apps , make sure Show System is checked in the menu, look for Media Store or something like that,...
Read more >How to access /storage/emulated/0 - android - Stack Overflow
In Emulator, to view this file click on Settings>Storage>Other>Android>data>com.companyname.textapp>file>Download. Here, textapp is the name ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This error also appeared for me and I also use react-native-camera, but I was able to get rid of it by truncating
file://
protocol from the beginning of the file path.For example if you have:
it should become
@StevePotter I think so.I looked at “Android upload service” library source and seems like that what the library author decided to do.