If needed directories don't exist, create them before trying to use them.

This commit is contained in:
yrriban 2025-04-19 11:27:53 -04:00
parent 1ad6ec7297
commit 63bc1436fe

View file

@ -55,13 +55,18 @@ def DemoInPath(wad, mapstr):
return sorted(filter(lambda s : re.search("-", str(s)), candidates))[-1] return sorted(filter(lambda s : re.search("-", str(s)), candidates))[-1]
def DemoOutPath(wad, mapstr): def DemoOutPath(wad, mapstr):
if not DEMOS.joinpath(wad).exists():
os.mkdir(DEMOS.joinpath(wad))
return DEMOS.joinpath(wad).joinpath(DemoName(wad, mapstr)) return DEMOS.joinpath(wad).joinpath(DemoName(wad, mapstr))
def DemoName(wad, mapstr): def DemoName(wad, mapstr):
return "{}_map{}.lmp".format(wad, mapstr) return "{}_map{}.lmp".format(wad, mapstr)
def BaseThumbPath(wad, mapstr): def BaseThumbPath(wad, mapstr):
if not OUTPUT.joinpath(wad).exists():
os.makedirs(OUTPUT.joinpath(wad), exist_ok=True)
return OUTPUT.joinpath(wad).joinpath("{}_map{}_base.png".format(wad, mapstr)) return OUTPUT.joinpath(wad).joinpath("{}_map{}_base.png".format(wad, mapstr))
def VideoPath(wad, mapstr): def VideoPath(wad, mapstr):
os.makedirs(OUTPUT.joinpath(wad), exist_ok=True)
return OUTPUT.joinpath(wad).joinpath("{}_map{}.mp4".format(wad, mapstr)) return OUTPUT.joinpath(wad).joinpath("{}_map{}.mp4".format(wad, mapstr))