기계는 거짓말하지 않는다

Python PermissionError: [Errno 13] Permission denied 본문

Python

Python PermissionError: [Errno 13] Permission denied

KillinTime 2021. 8. 5. 13:45

Python에서 파일 open시 볼 수 있는 에러이다.

실제로 파일 권한이 없어서 열 수 없는 경우 파일 권한을 변경하면 된다.

권한이 있는데도 발생한다면 Windows에서 거의 대부분 file이 아닌 directory를 open하고 있을 수 있다.

path를 확인하고 directory를 열고 있지 않은지 검사한다.

'Python' 카테고리의 다른 글

Python Numpy any Filter  (0) 2021.08.15
Python OpenCV, PIL Image shape, size  (0) 2021.08.10
Python list 특정 길이, 값으로 초기화  (0) 2021.08.05
Python Numpy transpose  (0) 2021.08.04
Python Class 정렬, 정렬 기준  (0) 2021.08.03
Comments