MCPcopy Create free account
hub / github.com/SeanDragon/protools / unzipFiles

Method unzipFiles

common/src/main/java/pro/tools/file/ToolZip.java:278–281  ·  view source on GitHub ↗

批量解压文件 @param zipFiles 压缩文件集合 @param destDirPath 目标目录路径 @return true: 解压成功 false: 解压失败 @throws IOException IO错误时抛出

(Collection<File> zipFiles, String destDirPath)

Source from the content-addressed store, hash-verified

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 * 批量解压文件

Callers

nothing calls this directly

Calls 2

getFileByPathMethod · 0.95
unzipFileMethod · 0.95

Tested by

no test coverage detected