删除文件 @param srcFilePath 文件路径 @return true: 删除成功 false: 删除失败
(String srcFilePath)
| 515 | * @return {@code true}: 删除成功<br>{@code false}: 删除失败 |
| 516 | */ |
| 517 | public static boolean deleteFile(String srcFilePath) { |
| 518 | return deleteFile(getFileByPath(srcFilePath)); |
| 519 | } |
| 520 | |
| 521 | /** |
| 522 | * 删除文件 |
no test coverage detected