如何使用readEntries并将其实现到phonegap中的按钮?

时间:2013-11-26 01:49:02

标签: android api file cordova

我一直在阅读phonegap-2.9.0的File API文档 我相信readEntries()是我应该使用的方法,如果我想点击一个按钮然后在按钮下面它将显示所有的文件/目录。

我查看了示例html

function success(entries) {
    var i;
    for (i=0; i<entries.length; i++) {
    console.log(entries[i].name);
    }
}

function fail(error) {
    alert("Failed to list directory contents: " + error.code);
}

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

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

也在网上找到了这个代码

window.requestFileSystem(LocalFileSystem.PERSISTENT, 512000, function(fs) {fs.root.createReader().readEntries(function(entries){for(var I in entries)console.log(entries[I].name);})}); 

不知怎的,我不太确定如何使用它们并将其实现为一个按钮。 有人可以帮我一把吗?

0 个答案:

没有答案