如何使用phoneGap删除.csv文件

时间:2015-07-08 10:57:02

标签: file cordova csv jquery-mobile delete-file

我们可以创建.csv文件并编写&读取数据表格.csv文件

我们流了File API Documentation

现在我们需要删除.csv文件。请指导我们。我们在移动内存中有person.csv文件。我们需要删除person.csv文件

我们试过这个

function onDeviceReady() {
    window.plugins.orientationLock.lock("portrait");
    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
}
function gotFS(fileSystem) {

     fileSystem.root.getFile("CCIL/Settlement/RouteSalesDispatchedHeader"+namebranchIt+""+lastFour+""+numberofCountVist+".csv", {create: true, exclusive: false}, gotFileEntry, fail);



 //   fileSystem.root.getFile("CCIL/Settlement/RouteSalesDispatchedHeader.csv", {create: true, exclusive: false}, gotFileEntry, fail);
}
function gotFileEntry(fileEntry) {
    //alert("seeeeee32");
    fileEntry.createWriter(gotFileWriter, fail);
}

我们需要删除之前将文件写入SdCard。请指导我们

0 个答案:

没有答案