如何使用python从特定日期期间获取目录中的文件列表

时间:2018-02-07 23:15:01

标签: python python-3.x filenames

所以我能够将所有文件名提取到文本文件中,但是有数百万个结果。如何将其限制为仅查看过去24小时/ 1天内创建的文件???

到目前为止,这是我的代码。

with open("output.txt", "w") as a:
    for path, subdirs, files in os.walk(r'\\somefolder'):
      for filename in files:
         f = os.path.join(filename)
         a.write(str(f) + os.linesep)

谢谢你的帮助

0 个答案:

没有答案