如何使用python获取文件夹中的最新文件
问题内容:
我需要使用python获取文件夹的最新文件。使用代码时:
max(files, key = os.path.getctime)
我收到以下错误:
FileNotFoundError: [WinError 2] The system cannot find the file specified: 'a'
问题答案:
分配给files
变量的任何内容均不正确。使用以下代码。
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