所以我一直试图弄清楚这一点。
fileEntry.file(function(file){
var reader = new FileReader();
reader.onloadend = function (e) {
var anchor = document.createElement("a");
anchor.setAttribute('href', "data:text/tsv;charset=UTF-8," + encodeURIComponent(this.result));
anchor.setAttribute("download", "log.tsv");
anchor.innerHTML = "Download Log Now";
document.body.appendChild(anchor);
alert("Download by clicking the damn link at the bottom.");
//delete the file?
}
reader.readAsText(file);
});
所以我的问题是如何在文件被读取后删除它?我试过fileEntry.remove(function(){console.log("File Removed.")});
在评论的地方做,但这不起作用。
有任何想法吗?