文件操作 - encoding.py
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python3/dist-packages/landscape/lib/encoding.py
编辑文件内容
from twisted.python.compat import unicode def encode_if_needed(value): """ A small helper to decode unicode to utf-8 if needed. """ if isinstance(value, unicode): value = value.encode("utf-8") return value def encode_values(dictionary): """ Encode values of the given C{dictionary} with utf-8 and surrogateescape. """ _dict = dictionary.copy() for key, val in _dict.items(): if isinstance(val, unicode): _dict[key] = val.encode("utf-8", "surrogateescape") return _dict
修改文件时间
将文件时间修改为当前时间的前一年
删除文件