欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python-批量更改文件名

程序员文章站 2022-04-18 15:57:59
...
import os

path = r'H:\EB\migu_boce\screen_recording'

# 获取该目录下所有文件,存入列表中
fileList = os.listdir(path)
fileList.sort()

n = 1
for i in range(len(fileList)):
    # 设置旧文件名(就是路径+文件名)
    if fileList[i].endswith('.mp4'):
        oldname = path + '//' + fileList[i]  # os.sep添加系统分隔符

        # 设置新文件名
        newname = path + '//' + str(1) + '.mp4'

        os.rename(oldname, newname)  # 用os模块中的rename方法对文件改名
        print(oldname, '======>', newname)

        n += 1

相关标签: 视频检索