cordova-filechooser
cordova-filechooser copied to clipboard
get file:// form content://
It is possible to add to cordova-filechooser patch to return real path to file instead content://? thank you.
I am having the same issue.
Same question here
Solution:
fileChooser.open(function(contentURI) {
window.FilePath.resolveNativePath(contentURI, function(absolutePath) {
window.resolveLocalFileSystemURL(absolutePath, function(fileEntry) {
There is a Cordova plugin for "resolveNativePath". Google it.
This @filerun this solved this issue for me