createIfNotExists

This commit is contained in:
Reinhard Pointner 2017-02-21 15:50:17 +08:00
parent 99c97714e3
commit 1370e494fa
1 changed files with 2 additions and 2 deletions

View File

@ -267,10 +267,10 @@ public class ScriptShellMethods {
return FileUtilities.copyAs(self, new File(destination, self.getName()));
}
public static void createFileIfNotExists(File self) throws IOException {
public static void createIfNotExists(File self) throws IOException {
if (!self.isFile()) {
// create parent folder structure if necessary & create file
Files.createDirectories(self.getParentFile().toPath());
Files.createDirectories(self.toPath().getParent());
Files.createFile(self.toPath());
}
}