반응형
OSError: [Errno 66] Directory not empty: 'test_direction'¶
- 터미널에서 아래와 같은 명령어를 입력하면
test_direction
아래test_file.txt
파일이 있는 것을 확인할 수 있습니다.
In [5]:
!ls -R test_direction
test_file.txt
os.rmdir
매서드를 사용할 경우test_direction
아래 파일이 하나라도 있으면 아래와 같이 에러가 발생합니다.
In [4]:
import os
os.rmdir("test_direction")
--------------------------------------------------------------------------- OSError Traceback (most recent call last) <ipython-input-4-d99e7fbfb4d3> in <module> 1 import os 2 ----> 3 os.rmdir("test_direction") OSError: [Errno 66] Directory not empty: 'test_direction'
- 만약
test_direction
아래 파일 존재 여부를 무시하고 지우려면 아래와 같이shutil.rmtree()
메서드를 이용합니다.
In [7]:
import shutil
shutil.rmtree("test_direction")
반응형
'python' 카테고리의 다른 글
파이썬 리스트 순서 뒤집기 (0) | 2023.11.30 |
---|---|
error: multiple repeat at position (0) | 2023.11.27 |
OSError: [E050] Can't find model 'ko_core_news_sm'. It doesn't seem to be a Python package or a valid path to a data directory (0) | 2023.11.16 |
파이썬 여러공백을 하나의 공백으로 re (0) | 2023.11.10 |
파이썬 영상을 gif 파일로 전환하기 (0) | 2023.10.11 |
댓글