for i in range(1,131):
    file_list = os.listdir(f"F:\\image\\{i}")
    print(file_list)

    for file in file_list:
        filename, file_extension = os.path.splitext(file)
        if file_extension == '.png':
            file_path = os.path.join(f"F:\\image\\{i}", file)
            os.remove(file_path)
        if file_extension == '.jpg':
            file_path = os.path.join(f"F:\\image\\{i}", file)
            os.remove(file_path)

'Python > 기능' 카테고리의 다른 글

파이썬(python) - 파일 이름 변경  (0) 2022.05.03
이미지 용량 줄이기  (0) 2022.04.19
원하는 폴더들 띄우기  (0) 2021.12.24
알집폴더 풀기  (0) 2021.12.24
OpenCV) 이미지 이동  (0) 2021.11.29

+ Recent posts