파이썬 파일 생성 및 수정 날짜/시간 가져오기

2024-07-27

os 모듈 사용

os 모듈은 운영 체제와 상호 작용하는 데 사용되는 표준 라이브러리입니다. 다음 코드는 os.path.getctime()os.path.getmtime() 함수를 사용하여 파일의 생성 및 수정 시간을 가져옵니다.

import os

filename = "example.txt"

# 파일 생성 시간 가져오기
creation_time = os.path.getctime(filename)

# 파일 수정 시간 가져오기
modification_time = os.path.getmtime(filename)

# 날짜/시간 형식 변환
from datetime import datetime

creation_time_str = datetime.fromtimestamp(creation_time).strftime("%Y-%m-%d %H:%M:%S")
modification_time_str = datetime.fromtimestamp(modification_time).strftime("%Y-%m-%d %H:%M:%S")

# 출력
print(f"파일 생성 시간: {creation_time_str}")
print(f"파일 수정 시간: {modification_time_str}")

stat 함수 사용

stat 함수는 파일 시스템 정보를 가져오는 데 사용됩니다. 다음 코드는 stat 함수를 사용하여 파일의 생성 및 수정 시간을 가져옵니다.

import stat

filename = "example.txt"

file_stats = stat.stat(filename)

# 파일 생성 시간 가져오기
creation_time = file_stats.st_ctime

# 파일 수정 시간 가져오기
modification_time = file_stats.st_mtime

# 날짜/시간 형식 변환
from datetime import datetime

creation_time_str = datetime.fromtimestamp(creation_time).strftime("%Y-%m-%d %H:%M:%S")
modification_time_str = datetime.fromtimestamp(modification_time).strftime("%Y-%m-%d %H:%M:%S")

# 출력
print(f"파일 생성 시간: {creation_time_str}")
print(f"파일 수정 시간: {modification_time_str}")

참고:

  • os.path.getctime()os.path.getmtime() 함수는 Unix 시스템에서만 작동합니다. Windows에서는 stat 함수를 사용해야 합니다.

예시:

# example.txt 파일 생성
with open("example.txt", "w") as f:
    f.write("Hello, world!")

# 파일 생성 및 수정 날짜/시간 출력
import os

filename = "example.txt"

# 파일 생성 시간 가져오기
creation_time = os.path.getctime(filename)

# 파일 수정 시간 가져오기
modification_time = os.path.getmtime(filename)

# 날짜/시간 형식 변환
from datetime import datetime

creation_time_str = datetime.fromtimestamp(creation_time).strftime("%Y-%m-%d %H:%M:%S")
modification_time_str = datetime.fromtimestamp(modification_time).strftime("%Y-%m-%d %H:%M:%S")

# 출력
print(f"파일 생성 시간: {creation_time_str}")
print(f"파일 수정 시간: {modification_time_str}")

출력:

파일 생성 시간: 2024-04-06 08:00:00
파일 수정 시간: 2024-04-06 08:00:00



예제 코드

# example.txt 파일 생성
with open("example.txt", "w") as f:
    f.write("Hello, world!")

# 파일 생성 및 수정 날짜/시간 출력
import os

filename = "example.txt"

# 파일 생성 시간 가져오기
creation_time = os.path.getctime(filename)

# 파일 수정 시간 가져오기
modification_time = os.path.getmtime(filename)

# 날짜/시간 형식 변환
from datetime import datetime

creation_time_str = datetime.fromtimestamp(creation_time).strftime("%Y-%m-%d %H:%M:%S")
modification_time_str = datetime.fromtimestamp(modification_time).strftime("%Y-%m-%d %H:%M:%S")

# 출력
print(f"파일 생성 시간: {creation_time_str}")
print(f"파일 수정 시간: {modification_time_str}")
파일 생성 시간: 2024-04-06 08:00:00
파일 수정 시간: 2024-04-06 08:00:00

설명:

  1. example.txt 파일을 "Hello, world!"라는 내용으로 생성합니다.
  2. os.path.getctime()os.path.getmtime() 함수를 사용하여 파일의 생성 및 수정 시간을 가져옵니다.
  3. datetime 모듈을 사용하여 날짜/시간을 원하는 형식으로 변환합니다.
  4. 파일 생성 및 수정 시간을 출력합니다.
  • 이 코드는 Unix 시스템에서만 작동합니다. Windows에서는 stat 함수를 사용해야 합니다.
  • stat 함수는 파일의 생성 및 수정 시간 외에도 다른 많은 정보를 제공합니다. 자세한 내용은 stat 함수 문서를 참조하십시오.

추가 예시:

  • 파일 크기 가져오기
  • 파일 내용 읽기 및 쓰기
  • 파일 삭제



대체 방법

import stat

filename = "example.txt"

file_stats = stat.stat(filename)

# 파일 생성 시간 가져오기
creation_time = file_stats.st_ctime

# 파일 수정 시간 가져오기
modification_time = file_stats.st_mtime

# 날짜/시간 형식 변환
from datetime import datetime

creation_time_str = datetime.fromtimestamp(creation_time).strftime("%Y-%m-%d %H:%M:%S")
modification_time_str = datetime.fromtimestamp(modification_time).strftime("%Y-%m-%d %H:%M:%S")

# 출력
print(f"파일 생성 시간: {creation_time_str}")
print(f"파일 수정 시간: {modification_time_str}")

pathlib 모듈 사용

pathlib 모듈은 Python 3.4 이상에서 사용할 수 있는 표준 라이브러리입니다. 다음 코드는 pathlib 모듈을 사용하여 파일의 생성 및 수정 시간을 가져옵니다.

from pathlib import Path

filename = "example.txt"

file_path = Path(filename)

# 파일 생성 시간 가져오기
creation_time = file_path.stat().st_ctime

# 파일 수정 시간 가져오기
modification_time = file_path.stat().st_mtime

# 날짜/시간 형식 변환
from datetime import datetime

creation_time_str = datetime.fromtimestamp(creation_time).strftime("%Y-%m-%d %H:%M:%S")
modification_time_str = datetime.fromtimestamp(modification_time).strftime("%Y-%m-%d %H:%M:%S")

# 출력
print(f"파일 생성 시간: {creation_time_str}")
print(f"파일 수정 시간: {modification_time_str}")

shutil 모듈 사용

shutil 모듈은 파일 및 폴더를 처리하는 데 사용되는 표준 라이브러리입니다. 다음 코드는 shutil 모듈을 사용하여 파일의 생성 및 수정 시간을 가져옵니다.

import shutil

filename = "example.txt"

# 파일 생성 시간 가져오기
creation_time = shutil.get_creation_time(filename)

# 파일 수정 시간 가져오기
modification_time = shutil.get_mtime(filename)

# 날짜/시간 형식 변환
from datetime import datetime

creation_time_str = datetime.fromtimestamp(creation_time).strftime("%Y-%m-%d %H:%M:%S")
modification_time_str = datetime.fromtimestamp(modification_time).strftime("%Y-%m-%d %H:%M:%S")

# 출력
print(f"파일 생성 시간: {creation_time_str}")
print(f"파일 수정 시간: {modification_time_str}")

subprocess 모듈 사용

subprocess 모듈은 하위 프로세스를 실행하는 데 사용되는 표준 라이브러리입니다. 다음 코드는 subprocess 모듈을 사용하여 stat 명령을 실행하고 파일의 생성 및 수정 시간을 가져옵니다.

import subprocess

filename = "example.txt"

# 파일 생성 시간 가져오기
creation_time = subprocess.check_output(["stat", "-c", "%y", filename]).decode().strip()

# 파일 수정 시간 가져오기
modification_time = subprocess.check_output(["stat", "-c", "%X", filename]).decode().strip()

# 날짜/시간 형식 변환
from datetime import datetime

creation_time_str = datetime.fromtimestamp(creation_time).strftime("%Y-%m-%d %H:%M:%S")
modification_time_str = datetime.fromtimestamp(modification_time).strftime("%Y-%m-%d %H:%M:%S")

# 출력
print(f"파일 생성 시간: {creation_time_str}")
print(f"파일 수정 시간: {modification_time_str}")
  • stat 명령 및 dir 명령은 다른 형식의 출력을 제공합니다. 따라서 출력

python file



파이썬에서 바이너리 리터럴을 표현하는 방법

1. 0b 접두사 사용:가장 간단한 방법은 0b 접두사를 사용하는 것입니다.2. 0x 접두사 사용:16진수 리터럴을 바이너리 리터럴로 변환하는 데 0x 접두사를 사용할 수 있습니다.3. f-문자열 사용:f-문자열을 사용하여 바이너리 리터럴을 표현할 수 있습니다...


Protocol Buffers를 사용한 Python, XML, 데이터베이스 프로그래밍 경험

1. 빠른 성능:Protocol Buffers는 바이너리 형식으로 데이터를 직렬화하기 때문에 XML이나 JSON보다 훨씬 빠르게 처리됩니다. 이는 네트워크를 통해 데이터를 전송하거나 데이터베이스에 저장해야 하는 경우 특히 중요합니다...


Python에서 운영 체제 식별하기

다음은 Python에서 운영 체제를 식별하는 방법 두 가지입니다.platform 모듈은 Python 표준 라이브러리에 포함되어 있으며 운영 체제 및 하드웨어 플랫폼에 대한 정보를 제공합니다. 다음 코드는 platform 모듈을 사용하여 운영 체제 이름...


Python을 사용한 직접 실행 가능한 플랫폼 간 GUI 앱 만들기

이 가이드에서는 Python을 사용하여 플랫폼 간 GUI 앱을 만들고 직접 실행 가능한 파일로 배포하는 방법을 설명합니다. 다양한 GUI 프레임워크와 배포 도구를 살펴보고 각 도구의 장단점을 비교합니다. 또한 사용자 인터페이스 설계...


파이썬에서 문자열을 사용하여 모듈의 함수 호출

파이썬에서 문자열을 사용하여 모듈의 함수를 호출하는 방법은 두 가지가 있습니다.getattr() 함수 사용: getattr() 함수는 객체와 문자열을 인수로 받아 문자열로 지정된 이름의 속성을 가져옵니다.exec() 함수 사용: exec() 함수는 문자열을 인수로 받아 Python 코드를 실행합니다...



python file

cx_Oracle: 결과 세트 반복 방법

1. fetch() 함수 사용fetch() 함수는 결과 세트에서 한 행씩 반환합니다. 각 반환 값은 튜플 형식이며, 각 열의 값을 나타냅니다.2. fetchall() 함수 사용fetchall() 함수는 결과 세트의 모든 행을 한 번에 리스트 형식으로 반환합니다


Django 클래스 뷰 프로그래밍 개요 (Python, Django, View)

클래스 뷰는 다음과 같은 장점을 제공합니다.코드 재사용성 향상: 공통 로직을 한 번 작성하고 상속을 통해 여러 뷰에서 재사용할 수 있습니다.코드 가독성 향상: 뷰 로직이 명확하게 구분되어 코드를 이해하기 쉽습니다.유지 관리 용이성 향상: 코드 변경이 필요할 경우 한 곳만 변경하면 모든 관련 뷰에 영향을 미칠 수 있습니다


Python과 MySQL 프로그래밍 개요

Python은 다양한 분야에서 활용되는 강력하고 유연한 프로그래밍 언어입니다. MySQL은 가장 인기 있는 오픈 소스 관계형 데이터베이스 관리 시스템(RDBMS) 중 하나입니다. 두 기술을 함께 사용하면 웹 애플리케이션


Python itertools.groupby() 사용법

사용 방법:itertools 모듈 임포트:groupby() 함수 호출:iterable: 그룹화할 대상이 되는 반복 가능한 객체 (리스트, 문자열, 튜플 등)key_func: 각 요소의 키를 결정하는 함수 (선택 사항)


파이썬에서 기존 객체 인스턴스에 메서드 추가하기

파이썬에서 기존 객체 인스턴스에 메서드를 추가하는 방법은 두 가지가 있습니다.setattr() 함수 사용: 객체의 __dict__ 속성에 메서드를 직접 추가합니다.데코레이터 사용: 메서드를 정의하고 데코레이터를 사용하여 인스턴스에 동적으로 바인딩합니다