기계는 거짓말하지 않는다

Python 파일 이름 변경 본문

Python

Python 파일 이름 변경

KillinTime 2021. 8. 19. 20:28
import os
dir_path = "test/files"
file_names = os.listdir(dir_path)

for name in file_names:
    src = os.path.join(dir_path, name)
    dst = name.replace("old_char", "new_char")
    dst = os.path.join(dir_path, dst)
    os.rename(src, dst)

 

'Python' 카테고리의 다른 글

Python String에 여러 요소가 있는지 판별  (0) 2021.08.28
Python argparse module  (0) 2021.08.28
Python Numpy any Filter  (0) 2021.08.15
Python OpenCV, PIL Image shape, size  (0) 2021.08.10
Python PermissionError: [Errno 13] Permission denied  (0) 2021.08.05
Comments