我们可以创建.csv文件并编写&读取数据表格.csv文件
现在我们需要删除.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。请指导我们