复制目录 @param filePath 需要处理的文件 @param targetPath 目标文件
(String filePath, String targetPath)
| 461 | * @param targetPath 目标文件 |
| 462 | */ |
| 463 | public final static void copyDir(String filePath, String targetPath) { |
| 464 | File file = new File(filePath); |
| 465 | copyDir(file, targetPath); |
| 466 | } |
| 467 | |
| 468 | /** |
| 469 | * 复制目录 |