文件操作 - __init__.py
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/__init__.py
编辑文件内容
from textwrap import dedent try: from .file_cache import FileCache except ImportError: notice = dedent(''' NOTE: In order to use the FileCache you must have lockfile installed. You can install it via pip: pip install lockfile ''') print(notice) try: import redis from .redis_cache import RedisCache except ImportError: pass
修改文件时间
将文件时间修改为当前时间的前一年
删除文件