批量解压文件 @param zipFiles 压缩文件集合 @param destDirPath 目标目录路径 @return true: 解压成功 false: 解压失败 @throws IOException IO错误时抛出
(Collection<File> zipFiles, String destDirPath)
| 276 | * IO错误时抛出 |
| 277 | */ |
| 278 | public static boolean unzipFiles(Collection<File> zipFiles, String destDirPath) |
| 279 | throws IOException { |
| 280 | return unzipFiles(zipFiles, ToolFile.getFileByPath(destDirPath)); |
| 281 | } |
| 282 | |
| 283 | /** |
| 284 | * 批量解压文件 |
nothing calls this directly
no test coverage detected