mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-04-24 03:00:11 -04:00
BundleFileReader
Read files from your app bundle.
https://github.com/tf/phonegap-plugins
Usage
plugins.bundleFileReader.readResource(
'someFile', 'txt', 'www/',
function(contents) {
console.log('Contents of www/someFile.txt: ' + contents);
},
function() {
console.log('File is missing');
}
);