Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python get newest file in directory

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.getctime)
print(latest_file)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #newest #file #directory
ADD COMMENT
Topic
Name
3+3 =