Trying to open Android SD card using HTML, Javascript and Phonegap
问题 I am trying to open the SD card and upload a file in Android using Phonegap. Below is the code where I am appending the SD card content to my HTML, but nothing is displaying. I am using cordova.js , jquery1.7.1.js . Below is my code: My Javascript: function onDeviceReady() { getFileSystem(); } function getFileSystem() { window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) { // success get file system root = fileSystem.root; listDir(root); }, function(evt) { // error