Cordova FileChooser Plugin
The Plugin now works with cordova 7
Requires Cordova >= 2.8.0
Install with Cordova CLI
$ cordova plugin add https://github.com/MohammadWaleed/cordova-plugin-file-chooser.git
Install with Plugman
$ plugman --platform android --project /path/to/project \
--plugin https://github.com/MohammadWaleed/cordova-plugin-file-chooser.git
API
fileChooser.open(successCallback, failureCallback);
The success callback get the uri of the selected file
fileChooser.open(function(uri) {
alert(uri);
});
Screenshot
TODO rename open
to pick, select, or choose.