Rafael Arce Nazario 7634e2ccd0 init | 5 years ago | |
---|---|---|
.. | ||
src | 5 years ago | |
www | 5 years ago | |
LICENSE.txt | 5 years ago | |
README.md | 5 years ago | |
filechooser.png | 5 years ago | |
package.json | 5 years ago | |
plugin.xml | 5 years ago |
Requires Cordova >= 2.8.0
$ cordova plugin add http://github.com/ihadeed/cordova-filechooser.git
$ plugman --platform android --project /path/to/project \
--plugin http://github.com/ihadeed/cordova-filechooser.git
fileChooser.open(filter, successCallback, failureCallback); // with mime filter
fileChooser.open(successCallback. failureCallback); // without mime filter
{ "mime": "application/pdf" } // text/plain, image/png, image/jpeg, audio/wav etc
The success callback gets the uri of the selected file
fileChooser.open(function(uri) {
alert(uri);
});
TODO rename open
to pick, select, or choose.