2604회 정시 채점자료 업데이트

This commit is contained in:
2026-04-27 17:01:47 +09:00
parent 4e4a582c70
commit d1e94037d5
48 changed files with 5352 additions and 8 deletions

View File

@@ -3,7 +3,7 @@ import shutil
import glob
# ── 설정 ────────────────────────────────────────────────────────────────
exam_round = "2603" # 회차명
exam_round = "2604" # 회차명
exam_code = "DIW" # 코드명
source_dir = rf"D:\project\HWP\HWP-Scoring\회차별채점자료\{exam_round}"
@@ -13,7 +13,7 @@ types = ["A", "B", "C", "D", "E"]
# ── 복사 실행 ────────────────────────────────────────────────────────────
for type in types:
pattern = os.path.join(source_dir, f"*{type}")
pattern = os.path.join(source_dir, f"*{type}*")
matched = [d for d in glob.glob(pattern) if os.path.isdir(d)]
if not matched: