解压rar @param rarFiles 带解压压缩包列表 @param destDirPath 目标目录 @return 成功与否 @throws IOException IO错误抛出 @throws RarException IO错误抛出
(Collection<File> rarFiles, String destDirPath)
| 492 | * IO错误抛出 |
| 493 | */ |
| 494 | public static boolean unrarFiles(Collection<File> rarFiles, String destDirPath) throws IOException, RarException { |
| 495 | return unrarFiles(rarFiles, ToolFile.getFileByPath(destDirPath)); |
| 496 | } |
| 497 | |
| 498 | /** |
| 499 | * 解压rar |
nothing calls this directly
no test coverage detected