用python在lunux系统下编写一个检查文本生成时间先后顺序的脚本
时间: 2024-09-28 07:03:19 浏览: 37
在Linux环境下,你可以使用Python编写一个脚本来检查文件的创建或修改时间(因为这些时间通常反映了文本生成的时间)。这里是一个简单的例子,我们将使用`os.path.getctime()`函数获取文件的创建时间:
```python
import os
# 定义需要检查的文件列表
files_to_check = ['file1.txt', 'file2.txt', 'file3.txt']
def check_file_timestamp(file_path):
try:
timestamp = os.path.getctime(file_path)
return timestamp
except FileNotFoundError:
print(f"{file_path} not found.")
return None
# 检查每个文件并按时间排序
sorted_files = sorted(files_to_check, key=lambda x: check_file_timestamp(x), reverse=True)
for i, file in enumerate(sorted_files):
print(f"File {i+1}: {file}, Created At: {check_file_timestamp(file)}")
#
阅读全文