我最近更新了我的phonegap版本,我制作的文件浏览器已停止工作。
我以前能够列出文件夹中的所有文件:
// I normally get this from entries.fullPath, and cut it down to the first forward slash
var myLocation = "/testFolder";
var myDirectory = new DirectoryReader
myDirectory.path = myLocation
myDirectory.readEntries(gotFiles, onError);
function gotFiles(entries) {
console.log(entries[i]);
}
function onError(e){
console.log(e)
return false;
}
这不再有效,并返回错误代码5。
我可以获取目录的(完整)文件路径,现在列出文件的正确方法是什么?