Answers for "find the last modified file in a directory python"

0

get last file in directory python

import glob
import os

list_of_files = glob.glob('/path/to/folder/*') # * means all if need specific format then *.csv
latest_file = max(list_of_files, key=os.path.getmtime)
print(latest_file)
Posted by: Guest on September-07-2021

Code answers related to "find the last modified file in a directory python"

Python Answers by Framework

Browse Popular Code Answers by Language