doesFileExist. @param filename a java.lang.String object. @return a boolean.
(final String filename)
| 66 | * @return a boolean. |
| 67 | */ |
| 68 | public static boolean doesFileExist(final String filename) { |
| 69 | final File f = new File(filename); |
| 70 | return f.exists(); |
| 71 | } |
| 72 | |
| 73 | public static boolean isDirectoryWithFiles(final String path) { |
| 74 | if (path == null) return false; |
no outgoing calls
no test coverage detected