移动目录 @param srcDirPath 源目录路径 @param destDirPath 目标目录路径 @return true: 移动成功 false: 移动失败
(String srcDirPath, String destDirPath)
| 424 | * @return {@code true}: 移动成功<br>{@code false}: 移动失败 |
| 425 | */ |
| 426 | public static boolean moveDir(String srcDirPath, String destDirPath) throws IOException { |
| 427 | return moveDir(getFileByPath(srcDirPath), getFileByPath(destDirPath)); |
| 428 | } |
| 429 | |
| 430 | /** |
| 431 | * 移动目录 |
nothing calls this directly
no test coverage detected