https://github.com/don/cordova-filechooser
Cordova Plugin that supplies a File Chooser
https://github.com/don/cordova-filechooser
Last synced: about 1 year ago
JSON representation
Cordova Plugin that supplies a File Chooser
- Host: GitHub
- URL: https://github.com/don/cordova-filechooser
- Owner: don
- License: other
- Created: 2013-07-11T05:12:52.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2019-12-19T15:29:32.000Z (over 6 years ago)
- Last Synced: 2025-03-28T04:13:26.509Z (about 1 year ago)
- Language: Java
- Size: 45.9 KB
- Stars: 97
- Watchers: 6
- Forks: 212
- Open Issues: 41
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Cordova FileChooser Plugin
Requires Cordova >= 2.8.0
Install with Cordova CLI
$ cordova plugin add http://github.com/don/cordova-filechooser.git
Install with Plugman
$ plugman --platform android --project /path/to/project \
--plugin http://github.com/don/cordova-filechooser.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.