文件操作 - py312compat.py
返回文件管理
返回主菜单
删除本文件
文件: /opt/alt/python313/lib/python3.13/site-packages/setuptools/py312compat.py
编辑文件内容
import sys import shutil def shutil_rmtree(path, ignore_errors=False, onexc=None): if sys.version_info >= (3, 12): return shutil.rmtree(path, ignore_errors, onexc=onexc) def _handler(fn, path, excinfo): return onexc(fn, path, excinfo[1]) return shutil.rmtree(path, ignore_errors, onerror=_handler)
修改文件时间
将文件时间修改为当前时间的前一年
删除文件