1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 08:18:52 -05:00

createIfNotExists

This commit is contained in:
Reinhard Pointner 2017-02-21 15:50:17 +08:00
parent 99c97714e3
commit 1370e494fa

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());
}
}