文件操作 - mixins.py
返回文件管理
返回主菜单
删除本文件
文件: /opt/imunify360/venv/lib/python3.11/site-packages/geoip2/mixins.py
编辑文件内容
"""This package contains utility mixins""" # pylint: disable=too-few-public-methods from abc import ABCMeta from typing import Any class SimpleEquality(metaclass=ABCMeta): """Naive __dict__ equality mixin""" def __eq__(self, other: Any) -> bool: return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not self.__eq__(other)
修改文件时间
将文件时间修改为当前时间的前一年
删除文件