我想在发生某些特定事件时从应用程序中删除与我的应用程序相关的完整数据库。

我怎样才能做到这一点?我正在使用cordova来构建我的应用程序,并且我的应用程序同时适用于Android和iOS平台。

最佳答案

尝试这样的事情:

function removefile(){
    fileSystem.root.getFile("/data/data/YourPackage/databases/YouDbName.db", {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);
}

10-07 12:32