「Python」複数のファイルを一括リネームするスクリプト

Pythonのコード下記:
#!/usr/bin/env python
#coding=utf-8
import os,os.path
import shutil,string

dir = 'C:\\startnews24_test’
for i in os.listdir(dir):
newfile = i.replace('.’,’_’)
oldfullfile = dir+’\\’+i
newfullfile = dir+’\\’+newfile
print oldfullfile
print newfullfile
shutil.move(oldfullfile,newfullfile)
print i

Development

Posted by arkgame