본문 바로가기

책 소개/비전공자를 위한 이해할 수 있는 파이썬

두 번째 실습 코드

반응형

두 번째 실습 : 다운로드 폴더에 있는 파일 중 설치파일만 옮기기 

 

1. 본문 91쪽 

import os
import shutil

source_dir = r"[다운로드 폴더의 주소]"
dest_dir = r"[설치파일모음 폴더의 주소]"

for file_name in os.listdir(source_dir):
    if file_name.endswith(".exe"):
       shutil.move(os.path.join(source_dir, file_name), dest_dir)

 

 

*코드 복사는 크롬 브라우저에서만 가능합니다. 크롬 외 브라우저(엣지, 웨일 등) 이용자는 아래 구글 드라이브 링크에서 복사 가능합니다. 

https://docs.google.com/document/d/1vgOfwTyLPjHDFRM81UmphYEezhPpPzE6Bb45NAY7Na8/edit?usp=sharing

반응형