import sys
import glob
#참고 for fname in sys.argv[1:]:
files = glob.glob('*.txt')
for fname in files:
infile = open( fname, "rb" )
instr = infile.read()
infile.close()
outstr = instr.replace( "\r\n", "\n" ).replace( "\r", "\n" ).replace( "\n", "\r\n" ) # unix2dos
#outstr = instr.replace( "\r\n", "\n" ).replace( "\r", "\n" ) # dos2unix
if len(outstr) == len(instr):
continue
outfile = open( fname, "wb" )
outfile.write( outstr )
outfile.close()
'IT_컴퓨터_코딩_개발' 카테고리의 다른 글
애드몹 iAd 아이애드 iOS 광고 달기 동시에 소스 (0) | 2013.01.04 |
---|---|
[c++] 콘솔 응용프로그램 종료 메뉴 없애기(Disable Close Menu and Button in Console application) (0) | 2012.12.28 |
유니티(Pro)에서 동영상 플레이하기 (0) | 2012.12.27 |
유니티 윈도우 비활성화되어도 화면 갱신되도록 셋팅하기 (0) | 2012.12.27 |
KidsFingerTouch (iPhone) (0) | 2012.07.27 |