Answers for "python list files in directory by date"

18

python list files in current directory

import os

files = os.listdir('.')
print(files)
for file in files:
  # do something
Posted by: Guest on November-04-2020
0

python get list of file and time created

import os
from pathlib import Path

paths = sorted(Path(dirpath).iterdir(), key=os.path.getmtime)
Posted by: Guest on December-07-2020

Code answers related to "python list files in directory by date"

Python Answers by Framework

Browse Popular Code Answers by Language