列出PhoneGap IOS中的所有目录文件

时间:2014-08-07 18:36:09

标签: json cordova

我需要在目录中生成文件列表,然后使用这些文件生成文件。有什么建议吗?

1 个答案:

答案 0 :(得分:5)

结账DirectoryReader由cordova提供。 DirectorReader对象列出目录中的文件和目录。

function success(entries) {
    var i;
    for (i=0; i<entries.length; i++) {
        console.log('En - ', entries[i]);
    }
}
function fail(error) {
    console.log("Failed to list directory contents: ", error);
}

window.resolveLocalFileSystemURL(DIR_FULL_PATH, function(dirEntry) {
    var directoryReader = dirEntry.createReader();
    console.log(dirEntry);

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

以下是LINK了解详情。

另一个链接Mobile File Explorer with PhoneGap/Cordova有例子。

干杯!!