I have both /document/video:5312 and content://com.android.providers.media.documents/document/video%3A5312
as "URI" or "absolute paths" to a video file that I selected from gallery and I feed it into new File();
File selectedFile = new File(selectedFilePath);
I've tried both of the upper URI/Paths and they just don't work. Does NOT work. The file is NOT found.
What format does File() require? This path is valid. How do I open it with File()?