
위 프로그램을 받아서 txt 파일들이 있는 폴더에 넣고, 실행하면 된다ANSI, EUC-KR, UCS-2 등 대부분의 한글 포맷 지원함 exe 못 믿겠다 하위폴더도 한번에 바꿔야 한다 나는 일본어같은 다른 포맷 바꿔야 한다 이런 사람은 아래 코드 직접 수정해서 빌드해서 쓰면 된다 import osimport chardetfrom concurrent.futures import ThreadPoolExecutor, as_completed# 현재 경로 기준base_path = os.getcwd()output_path = os.path.join(base_path, "output")os.makedirs(output_path, exist_ok=True)# TXT 파일 목록txt_files = [f for f in..