차트 제목 오탈자 검사항목에 추가

This commit is contained in:
2025-05-07 02:36:04 +09:00
parent c7357d088b
commit e54c160519
12 changed files with 521 additions and 15 deletions

View File

@@ -30,6 +30,9 @@ def copy_dic_subdirs(source_root, target_root_a, target_root_b, target_root_c, t
# DIC 하위 디렉토리와 파일 복사
shutil.copytree(source_dic_path, target_dic_path, dirs_exist_ok=True)
print(f"Copied {source_dic_path} to {target_dic_path}")
test_folder_path = os.path.join(target_root, "TEST")
os.makedirs(test_folder_path, exist_ok=True)
else:
print(f"Skipping {dir_name} under {parent_dir}, as it doesn't match '2교시' or '3교시'.")
@@ -38,7 +41,7 @@ def copy_dic_subdirs(source_root, target_root_a, target_root_b, target_root_c, t
# exam_round = "2504_2"
exam_round = "2504"
# source_directory = r"C:\Users\dra\project\data\제2504회 수시2(제주)\답안파일" # 원본 디렉토리 경로
source_directory = r"C:\Users\dra\project\data\제2504회 수시3(읍내)\답안파일" # 원본 디렉토리3경로
source_directory = r"D:\projects\data\제2504회 정기\답안파일\제2504회 디지털정보활용능력 답안파일" # 원본 디렉토리3경로
target_directory_a = f".\\input\\{exam_round}\\A" # '1교시'의 타겟 경로
target_directory_b = f".\\input\\{exam_round}\\B" # '2교시'의 타겟 경로