python_实现文件夹下所有文件或文件夹重命名

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import os


def rename(path):
    i = 0
    b = u'徐琦病理学'
    '该文件夹下所有的文件(包括文件夹)'
    FileList = os.listdir(path)
    '遍历所有文件'
    for files in FileList:
        '原来的文件路径'
        oldDirPath = os.path.join(path, files)
        '如果是文件夹则递归调用'
        if os.path.isdir(oldDirPath):
            rename(oldDirPath)
        '文件名'
        fileName = os.path.splitext(files)[0]
        '文件扩展名'
        fileType = os.path.splitext(files)[1]
        '新的文件路径'
        newDirPath = os.path.join(path, b + str(i) + fileType)
        '重命名'
        os.rename(oldDirPath, newDirPath)
        i += 1
        
        


path = 'D:\\downloads\Video\\xuqi'
rename(path)
CTRL-/