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
- ubuntu
- 프로그래머스
- pandas
- Docker
- windows forms
- C++
- Visual Studio
- C
- pytorch
- Selenium
- Numpy
- 채보
- VS Code
- 컨테이너
- C#
- Linux
- paramiko
- error
- SSH
- label
- mysql
- Python
- 기타 연주
- YOLO
- 오류
- JSON
- pip
- LIST
- OpenCV
- 핑거스타일
Archives
- Today
- Total
기계는 거짓말하지 않는다
Python 경로 확장자, 파일 이름 분리 본문
직접 구현해도 상관없지만 os.path 모듈에서 지원한다.
import os
file_path = "D:/TempRoot/TempChild/temp_file.txt"
# 경로에서 확장자 분리 후 튜플로 반환
print(os.path.splitext(file_path))
split_ext = os.path.splitext(file_path)
print("Type:", type(split_ext))
print("Index[0]:", split_ext[0])
print("Index[1]:", split_ext[1], "\n")
# 경로에서 파일이름 분리 후 튜플로 반환
print(os.path.split(file_path))
split_file_name = os.path.split(file_path)
print("Type:", type(split_file_name))
print("Index[0]:", split_file_name[0])
print("Index[1]:", split_file_name[1], "\n")
# 확장자 제외 파일 이름만 얻기
file_name = os.path.splitext(file_path)[0]
file_name = os.path.split(file_name)[1]
print("File name:", file_name)
'Python' 카테고리의 다른 글
Python 디렉터리 내 파일 경로 텍스트 저장 (0) | 2022.10.30 |
---|---|
Python 리스트 내포(List Comprehension) (1) | 2022.09.19 |
Python 특정 코드 실행 시간 시간:분:초 출력 (0) | 2022.09.11 |
Python 날짜 문자열 변환 (0) | 2022.08.25 |
Python RLock 자원 동시 접근 관리 (0) | 2022.07.22 |
Comments