你能告诉我如何从目录中读取文本文件吗?我需要从电话间隙的文件夹中读取文件。我能够保存(写)。但问题是读取文件?你能告诉我如何读取文件吗?
我能够保存文件。我需要的是读取文件
代码如下
function readRtfFile(){
try {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0,
function(fileSystem) {
fileSystem.root.getDirectory(CASENAME, { create: true, exclusive: false }, function(directoryEntry) {
console.log("log folder is created");
directoryEntry.getFile(DOCUMENT_NAME+".rtf", { create: true, exclusive: false }, function(fileEntry) {
fileEntry.createReader(function(writer) {
writer.readEntries(writer.length);
}, fail);
}, fail);
}, fail);
},
fail);
}
catch(e) {
fail(e+"fail");
}
}