有没有办法使用基于 Cordova 的移动应用程序删除设备上的文件?



我已经使用window.requestFileSystem为我的应用程序声明了一个"文件系统"。 我不应该有办法删除此目录中的文件吗? 我搜索了cordova文件删除扩展名,但没有看到任何扩展名,所以我希望有一些基于html5/javascript的东西。

你可以使用下面这样的东西:

var path = "file:///storage/emulated/0";
var filename = "myfile.txt";
window.resolveLocalFileSystemURL(path, function(dir) {
dir.getFile(filename, {create:false}, function(fileEntry) {
fileEntry.remove(function(){
// The file has been removed successfully
},function(error){
// Error deleting the file
},function(){
// The file doesn't exist
});
});
});

来源 : http://ourcodeworld.com/articles/read/28/how-to-delete-file-with-cordova

相关内容

  • 没有找到相关文章

最新更新