如何使用 Python 递归地遍历所有文件?


要递归遍历所有文件,你需要使用 os.walk 遍历目录树,并使用 os.utime(path_to_file) 遍历其中的所有文件。

示例

import os
# Recursively walk the tree
for root, dirs, files in os.walk(path):
    for file in files:
        # Set utime to current time
        os.utime(os.path.join(root, file))

在 Python 3.4+ 中,你可以直接使用 pathlib 模块来遍历文件。

示例

from pathlib import Path
import os
# Recursively walk the tree
for root, dirs, files in os.walk(path):
    for file in files:
        Path(os.path.join(root, file)).touch()

更新时间: 2020 年 2 月 18 日

746 次浏览

开启你的 职业生涯

完成课程以获得认证

开始
广告