반응형
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
- Tkinter
- Google Spreadsheet
- PostgreSQL
- numpy
- django
- GIT
- google apps script
- dataframe
- list
- Excel
- c#
- SQL
- Java
- Kotlin
- matplotlib
- PySpark
- math
- Python
- array
- gas
- hive
- Mac
- PANDAS
- Google Excel
- string
- 파이썬
- Github
- Apache
- Redshift
Archives
- Today
- Total
달나라 노트
Python os : unlink (파일 제거하기) 본문
728x90
반응형
import os
os.unlink('test.txt')
unlink는 어떤 파일을 삭제하는 기능을 제공합니다.
위 코드는 위 파이썬 파일이 존재하는 동일 디렉토리에 있는 test.txt 파일을 제거합니다.
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 : os.makedirs (디렉토리 만들기) (0) | 2020.11.25 |
Python os : os.remove & os.rmdir (파일 삭제하기, 디렉토리 삭제하기) (0) | 2020.11.25 |
Comments