본문 바로가기
[Python 파이션 관련정보]

파일 확장자 변환 프로그램

by 왕작가 2021. 3. 27.

import os, sys, glob

if os.path.isdir ('txt_files'):
    os.system('\\rm -rf txt_files')

os.system('mkdir txt_files')

flist=glob.glob('*')
for f1 in flist:
    if f1[-2:] == ".v":
        os.system('cp %s ./txt_files/%s'%(f1, f1[:-2]+".txt"))

'[Python 파이션 관련정보]' 카테고리의 다른 글

CRC16 python code  (1) 2021.01.31
qt4 사용법  (0) 2020.10.08
python3 에 beautifulsoup 설치하기  (0) 2020.10.07