PhoneGap删除文件不起作用

时间:2014-07-14 10:55:57

标签: javascript android cordova javascript-events phonegap-build

我正在尝试使用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。

提前致谢。

0 个答案:

没有答案