@param path @return true if "path" exists and is a directory (and not a file)
(String path)
| 253 | * @return true if "path" exists and is a directory (and not a file) |
| 254 | */ |
| 255 | public static boolean dirExists(String path) { |
| 256 | File f = new File(path); |
| 257 | return (f.exists() && f.isDirectory()); |
| 258 | } |
| 259 | |
| 260 | public static double formatDouble(double number) { |
| 261 | DecimalFormat fmt = new DecimalFormat("#.##"); |
no outgoing calls
no test coverage detected