“Python和运维”的版本间的差异
跳到导航
跳到搜索
第40行: | 第40行: | ||
[https://zhuanlan.zhihu.com/p/30544304 python爬取廖雪峰教程存为PDF] | [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]] | [[category:python]] |
2022年2月17日 (四) 06:09的版本
python常用的运维脚本
py3 批量修改文件后缀名 或者去掉后缀名
#!/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)
os.path.splitext
os.path.splitext(“文件路径”) 分离文件名与扩展名;默认返回(fname,fextension)元组,可做分片操作