首页 > 学院 > 开发设计 > 正文

小工具

2019-11-14 17:47:54
字体:
来源:转载
供稿:网友

此随笔记录自己写的小脚本。。。。。

锻炼自己写脚本的能力,特别是python。。。。。

1、批量将搜狐视频的格式由".ifox"改为".mp4"

1 import os2 3 files = os.listdir("D://SHDownload")4 5 for filename in files:6     type = os.path.splitext(filename)[1]7     if type == ".ifox" :8         newname = filename.replace(type, ".mp4")9         os.rename(filename, newname)
1.0

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表