我正在尝试使用phonegap构建从SD卡中删除文件,但我不能,我认为我的代码有一些问题,它没有输入到gotRemoveFileEntry函数中就是问题。
这是我的代码
function removefile(){
fileSystem.root.getFile("readme.txt", {create: false, exclusive: false}, gotRemoveFileEntry, fail);
}
function gotRemoveFileEntry(fileEntry){
console.log(fileEntry);
fileEntry.remove(success, fail);
}
function success(entry) {
console.log("Removal succeeded");
}
function fail(error) {
console.log("Error removing file: " + error.code);
}
请有人帮我删除创建的文件。
我正在使用cordova 2.5.0。
提前致谢。