文件操作 - __init__.py
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python3/dist-packages/twisted/plugins/__init__.py
编辑文件内容
# -*- test-case-name: twisted.test.test_plugin -*- # Copyright (c) 2005 Divmod, Inc. # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Plugins for services implemented in Twisted. Plugins go in directories on your PYTHONPATH named twisted/plugins: this is the only place where an __init__.py is necessary, thanks to the __path__ variable. @author: Jp Calderone @author: Glyph Lefkowitz """ from typing import List from twisted.plugin import pluginPackagePaths __path__.extend(pluginPackagePaths(__name__)) __all__: List[str] = [] # nothing to see here, move along, move along
修改文件时间
将文件时间修改为当前时间的前一年
删除文件