phonegap を使用して IPad を対象とするアプリケーションを作成しました。phonegap の API を使用して動的にテキスト ファイルを作成しました。ファイルの場所は /var/mobile/Applications/C9D4....../Documents/DataFiles です。ファイルにアクセスするにはどうすればよいですか?
助けてください。前もって感謝します
これを試して
function getfile(){
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, onFail);
function onFail(message) {
alert('Failed because: ' + message);
}
function gotFS(fileSystem) {
fileSystem.root.getFile("/var/mobile/Applications/C9D4....../Documents/DataFiles", {create: true}, gotFileEntry, fail);
}
function gotFileEntry(fileEntry) {
fileEntry.file(gotFile, fail);
}
function gotFile(file){
readDataUrl(file);
}
function readDataUrl(file) {
var reader = new FileReader();
reader.onloadend = function(evt) {
console.log("Read as data URL");
console.log(evt.target.result);
};
reader.readAsDataURL(file);
}
function fail(evt) {
console.log(evt.target.error.code);
}
}