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
- urllib
- GIT
- 함수
- ubuntu
- PER
- 다이어트
- 리눅스
- Unity
- 맛집
- node.js
- sqlite
- tensorflow
- Linux
- 날짜
- PyQt
- swift
- flutter
- 라즈베리파이
- javascript
- 유니티
- ASP
- MySQL
- mssql
- Excel
- IOS
- port
- PyQt5
- pandas
- python
- MS-SQL
Archives
목록디렉토리 (1)
아미(아름다운미소)
[python] 파일, 디렉터리 조작
[python] 파일, 디렉터리 조작 디렉터리, 파일, 확장자 분리 (get directory and file, extension) import os fullpath = '/home/aaa/bbb/ccc.txt' print(os.path.dirname(fullpath)) # '/home/aaa/bbb' print(os.path.basename(fullpath)) # 'ccc.txt' print(os.path.split(fullpath)) # ('/home/aaa/bbb', 'ccc.txt') print(os.path.splitext(fullpath)) # ('/home/aaa/bbb/ccc', '.txt') 파일 확인 (check file exists) print(os.path.exists('/home/..
랭귀지/python
2018. 1. 11. 13:00