1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-04-04 22:29:32 +00:00

Create output directories if needed; implements #21

This commit is contained in:
Karol Stasiak 2020-01-03 15:01:55 +01:00
parent e69b7084bc
commit b421dbba4f

View File

@ -74,6 +74,18 @@ object Main {
case _ => "a"
}
}
val outputParent = new File(output).getParentFile
if (outputParent.exists()) {
if (!outputParent.canWrite || !outputParent.isDirectory) {
errorReporting.warn(s"The output directory `${outputParent.getAbsolutePath}` cannot be written to.")
}
} else {
if (!outputParent.mkdirs()) {
errorReporting.warn(s"Failed to create the output directory `${outputParent.getAbsolutePath}``")
}
}
val assOutput = output + ".asm"
// val prgOutputs = (platform.outputStyle match {
// case OutputStyle.Single => List("default")