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
- 보험
- 변환
- 중도인출
- 보험료
- 추가납입
- 코딩
- 교보생명
- python
- 파이썬
- 리스트
- 납입
- 가입
- 프론트엔드
- jQuery
- 인출수수료
- 문자열
- 급성심근경색증
- 프로그래밍
- 심장질환
- 웹개발
- Java
- 뇌출혈
- Vue.js
- 특약
- 수수료
- javascript
- 사망
- 자바스크립트
- PythonProgramming
- 교보
Archives
- Today
- Total
목록수정일자 (1)
SeouliteLab
[Python/파이썬] 파일 생성 및 수정 날짜 가져오기
import os import datetime def get_file_dates(file_path): # 파일 생성일자 가져오기 creation_time = os.path.getctime(file_path) creation_date = datetime.datetime.fromtimestamp(creation_time) # 파일 수정일자 가져오기 modification_time = os.path.getmtime(file_path) modification_date = datetime.datetime.fromtimestamp(modification_time) return creation_date, modification_date # 테스트용 파일 경로 file_path = 'example.txt'..
카테고리 없음
2024. 4. 24. 09:06