(File f)
| 70 | } |
| 71 | |
| 72 | public static void touch(File f) throws IOException { |
| 73 | f.getParentFile().mkdirs(); |
| 74 | if (!f.createNewFile()){ |
| 75 | f.setLastModified(System.currentTimeMillis()); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | public static void symlinkRemoveExisting(String target, String link) throws IOException { |
| 80 | Path targetPath = Paths.get(target); |
no outgoing calls
no test coverage detected