我正在使用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);
}
如果我只获取单个目录路径然后它可以工作,如果我尝试获取具有两个目录的路径则失败。
任何帮助将不胜感激。
由于
答案 0 :(得分:5)
你可以这样做:
function onFileSystemSuccess(fileSystem) {
var tmpPath = filesystem.root.fullPath + "/dir1/dir2";
window.resolveLocalFileSystemURI(tmpPath, getDirSuccess, fail);
}
但我很好奇为什么你展示的代码不起作用。您正在测试什么平台?