Eggs Sunny Side Up
본문 바로가기
언어/Python

[Python] 가장 최근 저장된 파일 불러오기

by guswn100059 2023. 8. 5.
def get_newest_file_sac():
    # 현재 작업 디렉토리 가져오기
    current_dir = "파일 경로"

    # 디렉토리 내의 모든 파일 가져오기 (파일의 경로 포함)
    all_files = glob.glob(os.path.join(current_dir, '*'))

    # 파일들을 수정 시간을 기준으로 정렬
    all_files.sort(key=os.path.getmtime)

    # 가장 최근에 저장된 파일 경로 반환
    newest_file = all_files[-1]
    return newest_file

# 함수 호출해서 가장 최근 파일 경로를 얻어옴
newest_file_path_sac = get_newest_file_sac()
print("가장 최근에 저장된 파일 경로:", newest_file_path_sac)

 

'언어 > Python' 카테고리의 다른 글

파이썬 라이브러리 시험  (0) 2023.04.05
Matplotlib  (0) 2023.04.04
Pandas  (0) 2023.04.04
Numpy 실습 - 영화 평점데이터 분석하기  (0) 2023.04.03
Numpy  (0) 2023.04.01

댓글