获取文件的创建时间并进行格式化
获取文件创建时间,并格式化常见的格式
import os
import time
file_path = "path/to/your/file.txt" # 替换为实际的文件路径
# 获取文件的创建时间戳
creation_time = os.path.getctime(file_path)
# 格式化时间戳为字符串
formatted_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(creation_time))
print("File creation time:", formatted_time)