net.lingala.zip4j.zip.ZipEngine.removeFilesIfExists()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(0.9k)|赞(0)|评价(0)|浏览(133)

本文整理了Java中net.lingala.zip4j.zip.ZipEngine.removeFilesIfExists()方法的一些代码示例,展示了ZipEngine.removeFilesIfExists()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipEngine.removeFilesIfExists()方法的具体详情如下:
包路径:net.lingala.zip4j.zip.ZipEngine
类名称:ZipEngine
方法名:removeFilesIfExists

ZipEngine.removeFilesIfExists介绍

[英]Before adding a file to a zip file, we check if a file already exists in the zip file with the same fileName (including path, if exists). If yes, then we remove this file before adding the file

Note: Relative path has to be passed as the fileName
[中]在将文件添加到zip文件之前,我们检查zip文件中是否已经存在具有相同文件名的文件(包括路径,如果存在)。如果是,则在添加文件之前删除该文件
注意:相对路径必须作为文件名传递

代码示例

代码示例来源:origin: net.lingala.zip4j/zip4j

checkParameters(parameters);
removeFilesIfExists(fileList, parameters, progressMonitor);

代码示例来源:origin: com.github.axet/zip4j

checkParameters(parameters);
removeFilesIfExists(fileList, parameters, progressMonitor);

相关文章