Phonegap目录列表 - 列出目录中的所有内容

时间:2014-03-06 17:50:11

标签: android cordova

我最近更新了我的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。

我可以获取目录的(完整)文件路径,现在列出文件的正确方法是什么?

0 个答案:

没有答案