I have a directory full of files that are generated every 5 minutes. When I do an ls -l at a cmd prompt I can see the files and their last modified time.
I need to programatically get a list of files that are timestamped within the last N minutes. How to do that?
Use
os.path.getmtime
oros.path.getctime
to get modification / creation time of the file.