From d1ddad97ef8a6e917c18d2211dc07c2aa07df561 Mon Sep 17 00:00:00 2001 From: yrriban Date: Sat, 19 Apr 2025 11:40:07 -0400 Subject: [PATCH] Immediately decide I don't like the previous commit and refactor it somewhat. --- dcc/config.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dcc/config.py b/dcc/config.py index ed04e05..aeb90e7 100644 --- a/dcc/config.py +++ b/dcc/config.py @@ -55,18 +55,18 @@ def DemoInPath(wad, mapstr): return sorted(filter(lambda s : re.search("-", str(s)), candidates))[-1] def DemoOutPath(wad, mapstr): - if not DEMOS.joinpath(wad).exists(): - os.mkdir(DEMOS.joinpath(wad)) - return DEMOS.joinpath(wad).joinpath(DemoName(wad, mapstr)) + return Ensure(DEMOS.joinpath(wad)).joinpath(DemoName(wad, mapstr)) def DemoName(wad, mapstr): return "{}_map{}.lmp".format(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 Ensure(OUTPUT.joinpath(wad)).joinpath("{}_map{}_base.png".format(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 Ensure(OUTPUT.joinpath(wad)).joinpath("{}_map{}.mp4".format(wad, mapstr)) + +def Ensure(path): + if not path.exists(): + ok.mkdir(path) + return path