判断是否是文件 @param filePath 文件路径 @return true: 是 false: 否
(String filePath)
| 140 | * @return {@code true}: 是<br>{@code false}: 否 |
| 141 | */ |
| 142 | public static boolean isFile(String filePath) { |
| 143 | return isFile(getFileByPath(filePath)); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * 判断是否是文件 |
no test coverage detected