import glob
import os
pwd = os.getcwd()
os.chdir(pwd)
searchkey = raw_input("input searching file name : ")
filelist = glob.glob(searchkey)
for filename in filelist:
print filename
replacefrom = raw_input("input string to replace from : ")
replaceto = raw_input("input string to replace to : ")
for filename in filelist:
newfilename = filename.replace(replacefrom, replaceto)
print filename, '-->', newfilename
os.rename(filename, newfilename)
.pyc 로 컴파일 해서 path 설정된 곳에 넣어 놓고 윈도우즈 command prompt 창에서 ren2.pyc 식으로 실행
'Coding > Python Matlab' 카테고리의 다른 글
multiple column data reading (0) | 2017.03.14 |
---|---|
pip - 윈도우즈 python 에서도 지원 (0) | 2017.02.08 |
현재 실행하고 있는 함수 이름 inspect.stack()[0][3] (0) | 2017.01.12 |
파이썬 2 에서 3 로의 이전 (오래된 구습의 탈피 ?) (0) | 2016.09.12 |
“ImportError: No module named tkinter” when using Pmw (0) | 2016.09.11 |