我正在使用 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);
}
如果我只获取一个目录路径,那么它可以工作,如果我尝试获取一个包含两个目录的路径,它会失败。
任何帮助,将不胜感激。
谢谢