摘要: import os from pathlib import Path def list_files(startpath): path = Path(startpath) for item in path.rglob('*'): if item.is_file(): target_timestamp 阅读全文
posted @ 2024-12-06 18:00 淋哥 阅读(3) 评论(0) 推荐(0) 编辑