复制目录 @param srcDirPath 源目录路径 @param destDirPath 目标目录路径 @return true: 复制成功 false: 复制失败
(String srcDirPath, String destDirPath)
| 368 | * @return {@code true}: 复制成功<br>{@code false}: 复制失败 |
| 369 | */ |
| 370 | public static boolean copyDir(String srcDirPath, String destDirPath) throws IOException { |
| 371 | return copyDir(getFileByPath(srcDirPath), getFileByPath(destDirPath)); |
| 372 | } |
| 373 | |
| 374 | /** |
| 375 | * 复制目录 |
nothing calls this directly
no test coverage detected