Android - How to access the File from a ParcelFileDescriptor?
According to the FileProvider documentation the fileProvider.openFile()
method returns
a new ParcelFileDescriptor with which you can access the file.
I have looked in ParcelFileDescriptor, but I cannot see how to access the File. So how do I access the File from a ParcelFileDescriptor?
Source: View source