如何使用 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()
广告