获取目录大小 @param dirPath 目录路径 @return 文件大小
(String dirPath)
| 1240 | * @return 文件大小 |
| 1241 | */ |
| 1242 | public static String getDirSize(String dirPath) { |
| 1243 | return getDirSize(getFileByPath(dirPath)); |
| 1244 | } |
| 1245 | |
| 1246 | /** |
| 1247 | * 获取目录大小 |
nothing calls this directly
no test coverage detected