|
34 | 34 | import java.nio.file.Files;
|
35 | 35 | import java.nio.file.Path;
|
36 | 36 | import java.nio.file.SimpleFileVisitor;
|
| 37 | +import java.nio.file.StandardCopyOption; |
37 | 38 | import java.nio.file.attribute.BasicFileAttributes;
|
38 | 39 | import java.util.*;
|
39 | 40 | import javax.xml.stream.XMLOutputFactory;
|
@@ -112,26 +113,11 @@ public FileVisitResult visitFile(final Path file,
|
112 | 113 |
|
113 | 114 | public static void copyFile(File sourceFile, File destFile)
|
114 | 115 | throws IOException {
|
115 |
| - destFile.getParentFile().mkdirs(); |
| 116 | + Files.createDirectories(destFile.getParentFile().toPath()); |
116 | 117 |
|
117 |
| - //recreate the file as existing copy may have weird permissions |
118 |
| - destFile.delete(); |
119 |
| - destFile.createNewFile(); |
120 |
| - |
121 |
| - try (FileChannel source = new FileInputStream(sourceFile).getChannel(); |
122 |
| - FileChannel destination = |
123 |
| - new FileOutputStream(destFile).getChannel()) { |
124 |
| - destination.transferFrom(source, 0, source.size()); |
125 |
| - } |
126 |
| - |
127 |
| - //preserve executable bit! |
128 |
| - if (sourceFile.canExecute()) { |
129 |
| - destFile.setExecutable(true, false); |
130 |
| - } |
131 |
| - if (!sourceFile.canWrite()) { |
132 |
| - destFile.setReadOnly(); |
133 |
| - } |
134 |
| - destFile.setReadable(true, false); |
| 118 | + Files.copy(sourceFile.toPath(), destFile.toPath(), |
| 119 | + StandardCopyOption.REPLACE_EXISTING, |
| 120 | + StandardCopyOption.COPY_ATTRIBUTES); |
135 | 121 | }
|
136 | 122 |
|
137 | 123 | // run "launcher paramfile" in the directory where paramfile is kept
|
|
0 commit comments