README
Cordova FileChooser Plugin
Originally created by don.
Forked to create an NPM compatible package, so it's installable via the CLI.
Requirements
Requires Cordova >= 2.8.0
Installation
Install with Cordova CLI
$ cordova plugin add cordova-filechooser
Usage
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.