반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- django
- google apps script
- Mac
- matplotlib
- GIT
- gas
- c#
- Java
- math
- SQL
- PostgreSQL
- PySpark
- string
- PANDAS
- list
- Tkinter
- Redshift
- numpy
- Excel
- Google Spreadsheet
- 파이썬
- Python
- Github
- Kotlin
- Google Excel
- Apache
- dataframe
- hive
- array
Archives
- Today
- Total
달나라 노트
Python os : os.remove & os.rmdir (파일 삭제하기, 디렉토리 삭제하기) 본문
Python/Python os
Python os : os.remove & os.rmdir (파일 삭제하기, 디렉토리 삭제하기)
CosmosProject 2020. 11. 25. 19:18728x90
반응형
os.remove
os.remove는 어떤 경로의 파일을 삭제해주는 기능을 제공합니다.os.rmdir은 어떤 경로의 디렉토리를 삭제해주는 기능을 제공합니다.
아래와 같은 디렉토리 구조가 있다고 가정해봅시다.예시 코드는 test.py에 적히고 있습니다.
--- dir
|--- test.py
|--- test_memo.txt
|--- test_1
|--- test_2
|--- test_3
|--- test.xlsx
만약 test.py에 코드를 적어서 test_memo.txt를 삭제하고 싶다면 아래처럼 적으면 됩니다.
import os
os.remove('test_memo.txt')
만약 test_2 디렉토리 안의 test.xlsx를 제거하고싶으면 아래처럼 적으면 됩니다.
import os
os.remove('test_2/test.xlsx')
만약 test_1이라는 디렉토리 자체를 제거하고싶으면 아래처럼 하면 됩니다.
import os
os.rmdir('test_1')
만약 test_2 안의 text_3이라는 디렉토리를 제거하고싶으면 아래처럼 하면 됩니다.단, 디렉토리가 비어있어야 삭제 가능합니다.
import os
os.rmdir('test_2/test_3')
728x90
반응형
'Python > Python os' 카테고리의 다른 글
Python os : chdir (Directory 위치 변경) (0) | 2020.12.23 |
---|---|
Python os : getcwd (현재 Directory 위치 출력, 현재 디렉토리 위치, 현재 디렉토리 주소, 현재 디렉토리) (0) | 2020.12.23 |
Python os : rename (file 이름 바꾸기) (0) | 2020.12.23 |
Python os : unlink (파일 제거하기) (0) | 2020.12.23 |
Python os : os.makedirs (디렉토리 만들기) (0) | 2020.11.25 |
Comments