(String p)
| 86 | } |
| 87 | |
| 88 | public static void deleteIfExists(String p) throws IOException { |
| 89 | Files.deleteIfExists(FileSystems.getDefault().getPath(p)); |
| 90 | } |
| 91 | |
| 92 | public static void saveStringToFile(String path, String str) throws IOException { |
| 93 | FileWriter writer = new FileWriter(path, false); |
no outgoing calls
no test coverage detected