1. 程式人生 > >python實現文件命名

python實現文件命名

獲取 his highlight 文件名 for sta python實現 去除 light

# coding:utf-8
‘‘‘
將文件名稱重命名
將上級的文件名稱添加到文件名稱中
‘‘‘


import os


file_path1 = r"D:\安裝包\傳智播客python"
file_name1 = os.listdir(file_path1)
file_name1 = file_name1[0:13]#去除其他不需要操作的文件


for file_name in file_name1:
    print(file_name)
    #獲取一級文件夾名稱
    file_path = "D:\安裝包\傳智播客python\%s"%(file_name)
    #二級菜單下的文件名稱
    file_name2 = os.listdir(file_path)
    for temp in file_name2:
        #temp:一個文件的名稱
        #原名稱
        histary =  "D:\安裝包\傳智播客python\%s\\"%(file_name)
        print(histary)
        new_name = file_name + temp
        os.rename(histary + temp,histary+new_name)
        print("newname:",histary+new_name)

  

python實現文件命名