[Python]파일명 바꾸기
예섬이를 위해 간단히 짜본 파이썬 스크립트. 문제는 엠파스에서 탭이 제대로 안붙는구나 ;; [요구사항] 특정 폴더를 선택하여, 해당 폴더가 가지고 있는 파일들의 이름 앞에 특정 문자열을 붙일 수 있어야 한다. import os, time, string from Tkinter import * from tkFileDialog import askdirectory top = Tk() F = Frame(top) F.pack(expand="true") myPath = askdirectory(title="select directory", mustexist=1) if not myPath: os.exit else: print "selected", myPath #myPath = raw_input("Enter the pat..