두 폴더 파일 이름명을 비교해 같은 이름이 없는 파일 찾기
2023. 3. 11. 16:46ㆍPython
import os
# 비교할 두 폴더 경로 설정
folder1 = ""
folder2 = ""
files1 = [os.path.splitext(f)[0] for f in os.listdir(folder1)]
files2 = [os.path.splitext(f)[0] for f in os.listdir(folder2)]
unique_files1 = set(files1) - set(files2)
unique_files2 = set(files2) - set(files1)
print("폴더1에만 존재하는 파일 이름: ", unique_files1)
print("폴더2에만 존재하는 파일 이름: ", unique_files2)
'Python' 카테고리의 다른 글
파이썬 join 함수 (0) | 2023.03.26 |
---|---|
[파이썬] format 이용한 소수점 출력 round, format (0) | 2023.02.21 |
[파이썬] collections 라이브러리를 이용해 스택 큐 구현 (0) | 2023.02.20 |