1. 程式人生 > >批量修改副檔名稱

批量修改副檔名稱

#寫個小程式,把tmp的擴充套件檔名修改為tttmmmppp

import os
import sys
import re

os.system("where /R e:\ *.tmp > tmp.txt")

f_an=file("e:\tmp.txt")

while True:    
        line=f_an.readline()
        line=line.replace('\n',' ')
        aList = os.path.split(os.path.realpath(line))
        
        path=aList[0]
        cmd="ren "+aList[0]+"\\"+aList[1]+" "+aList[1].replace('.tmp','.tttmmmppp')
        print cmd
        os.system(cmd)
        if len(line)==0: # Zero length indicates EOF
            break

f_an.close()