os.listdir을 사용하여 파일을 반복할 때 FileNotFoundError 발생
os.listdir을 사용하여 디렉터리의 파일을 반복할 때 다음과 같은 오류가 발생할 수 있습니다. 파일이 존재하는데도 FileNotFoundError가 발생합니다. 이는 os.listdir이 파일의 전체 경로가 아닌 파일 이름만 반환하기 때문입니다.
import os path = r'E:/somedir' for filename in os.listdir(path): f = open(filename, 'r') ... # process the file
이 예에서 filename에는 파일 이름만 포함되어 있기 때문에 파일이 존재하더라도 Python은 FileNotFoundError를 발생시킵니다. 'E:/somedir/foo.txt'와 같은 전체 경로 대신 'foo.txt'와 같은.
이 문제를 해결하려면 os.path.join을 사용하여 디렉터리 경로를 파일 이름:
path = r'E:/somedir' for filename in os.listdir(path): with open(os.path.join(path, filename)) as f: ... # process the file
또한 파일 열기 명령문이 있는 컨텍스트 관리자를 사용하는 것이 좋습니다. 이렇게 하면 완료 시 파일이 제대로 닫히게 됩니다.
위 내용은 파일을 열 때 `os.listdir`이 `FileNotFoundError`를 발생시키는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!