获取压缩文件中的文件路径链表 @param zipFilePath 压缩文件路径 @return 压缩文件中的文件路径链表 @throws IOException IO错误时抛出
(String zipFilePath)
| 597 | * IO错误时抛出 |
| 598 | */ |
| 599 | public static List<String> getFilesPath(String zipFilePath) |
| 600 | throws IOException { |
| 601 | return getFilesPath(ToolFile.getFileByPath(zipFilePath)); |
| 602 | } |
| 603 | |
| 604 | /** |
| 605 | * 获取压缩文件中的文件路径链表 |
nothing calls this directly
no test coverage detected