移动文件 @param srcFilePath 源文件路径 @param destFilePath 目标文件路径 @return true: 移动成功 false: 移动失败
(String srcFilePath, String destFilePath)
| 452 | * @return {@code true}: 移动成功<br>{@code false}: 移动失败 |
| 453 | */ |
| 454 | public static boolean moveFile(String srcFilePath, String destFilePath) throws IOException { |
| 455 | return moveFile(getFileByPath(srcFilePath), getFileByPath(destFilePath)); |
| 456 | } |
| 457 | |
| 458 | /** |
| 459 | * 移动文件 |
nothing calls this directly
no test coverage detected