美文网首页
变更pdf名字

变更pdf名字

作者: 月夜星空下 | 来源:发表于2022-06-22 20:33 被阅读0次
#!/usr/bin/env python
# encoding: utf-8
import os


def rename(dirname, old, new):
    olddir = os.path.join(dirname, old)
    newdir = os.path.join(dirname, new)
    os.rename(olddir, newdir)


path = 'D://Users/Desktop/中国证券监督管理委员会/x6'
for filename in os.listdir(path):
    print(filename)
    new = filename.replace('.docx', '').replace('doc','').replace('.pdf','') + '.pdf'
    rename(path, filename, new)

相关文章

网友评论

      本文标题:变更pdf名字

      本文链接:https://www.haomeiwen.com/subject/bbumvrtx.html