comparison src/goodjava/io/IoUtils.java @ 1488:af55cfad6e12

start lucene.backup
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 02 May 2020 15:38:48 -0600
parents c7b86342857f
children 471ef3e6a84e
comparison
equal deleted inserted replaced
1487:044a360c2300 1488:af55cfad6e12
27 } 27 }
28 } 28 }
29 delete(file); 29 delete(file);
30 } 30 }
31 31
32 public static void link(File from,File to) throws IOException {
33 Files.createLink( to.toPath(), from.toPath() );
34 }
35
32 } 36 }