我正在使用Phonegap / Cordova 2.2

我正在尝试读取子目录的内容,但无法弄清楚该怎么做。

这是我的代码:

 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onFileSystemSuccess, fail);

function onFileSystemSuccess(fileSystem) {

var tmpPath = "dir1/dir2/";

fileSystem.root.getDirectory(tmpPath, {create: false, exclusive: false}, getDirSuccess, fail);
}


function getDirSuccess(dirEntry) {

// Get a directory reader
var directoryReader = dirEntry.createReader();

// Get a list of all the entries in the directory
directoryReader.readEntries(readerSuccess,fail);
}

如果仅获取单个目录路径,则它起作用;如果尝试获取具有两个目录的路径,则它将失败。

任何帮助,将不胜感激。

谢谢

最佳答案

好吧,你可以这样做:

function onFileSystemSuccess(fileSystem) {
    var tmpPath = filesystem.root.fullPath + "/dir1/dir2";
    window.resolveLocalFileSystemURI(tmpPath, getDirSuccess, fail);
}

但是我很好奇为什么您显示的代码行不通。您在什么平台上测试?

07-27 22:02