文件操作 - core.py
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python3/dist-packages/certifi/core.py
编辑文件内容
""" certifi.py ~~~~~~~~~~ This module returns the installation location of /etc/ssl/certs/ca-certificates.crt or its contents. """ DEBIAN_CA_CERTS_PATH = '/etc/ssl/certs/ca-certificates.crt' def where() -> str: return DEBIAN_CA_CERTS_PATH def contents() -> str: with open(where(), "r", encoding="ascii") as data: return data.read()
修改文件时间
将文件时间修改为当前时间的前一年
删除文件