获取文件大小 @param filePath 文件路径 @return 文件大小
(String filePath)
| 1265 | * @return 文件大小 |
| 1266 | */ |
| 1267 | public static String getFileSize(String filePath) { |
| 1268 | return getFileSize(getFileByPath(filePath)); |
| 1269 | } |
| 1270 | |
| 1271 | /** |
| 1272 | * 获取文件大小 |
nothing calls this directly
no test coverage detected