查看“Python和运维”的源代码
←
Python和运维
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
=python常用的运维脚本= == py3 批量修改文件后缀名 或者去掉后缀名== <pre> #!/usr/bin/python3 # -*- coding:utf-8 -*- # python批量更换后缀名 import os # 列出当前目录下所有的文件 files = os.listdir('.') for filename in files: portion = os.path.splitext(filename) # 如果后缀是.dat if portion[1] == ".txt": # 这里是把 .txt去掉 重新组合文件名和后缀名 newname = portion[0] #txt 文件改为sh 要用这个记得打开下行注释 #newname = portion[0] + ".sh" os.rename(filename,newname) </pre> [https://blog.csdn.net/rosefun96/article/details/78968490 python文件操作3--批量修改文件后缀名] [https://github.com/fupinglee/MyPython github.com 一些常用的Python脚本] [https://blog.csdn.net/weixin_44099558/article/details/85775937 Python运维常用的脚本,提高工作效率就靠它了] [https://www.yisu.com/zixun/7532.html python常用的运维脚本有哪些] [https://www.zhihu.com/question/28661987 zhihu 你用 Python 写过哪些有趣的脚本?] [https://zhuanlan.zhihu.com/p/30544304 python爬取廖雪峰教程存为PDF] =os.path.splitext= os.path.splitext(“文件路径”) 分离文件名与扩展名;默认返回(fname,fextension)元组,可做分片操作 https://www.cnblogs.com/rychh/articles/9745932.html https://blog.csdn.net/u011509971/article/details/70244688 [[category:python]]
返回至
Python和运维
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
我的导航
关于我
shell
python
ops
linuxchina.net
blog.linuxchina
最近更改
随机页面
帮助
工具
链入页面
相关更改
特殊页面
页面信息