所以我能够将所有文件名提取到文本文件中,但是有数百万个结果。如何将其限制为仅查看过去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)
谢谢你的帮助