아미(아름다운미소)

python 파일복사 본문

랭귀지/PYTHON

python 파일복사

유키공 2019. 7. 4. 14:33
# 파일복사하기
import shutil 
shutil.copy(SourceFilePath, DestFilePath)
# 폴더를 통째로 복사하기
from distutils.dir_util import
copy_tree copy_tree(src_dircetory, dest_directory)

'랭귀지 > PYTHON' 카테고리의 다른 글

python change stereo to mono[pydub]  (0) 2019.07.31
python 폴더 생성하기  (0) 2019.07.18
df.to_csv시 한글 깨짐 오류  (0) 2019.06.26
PANDAS 기본 명령어  (0) 2019.06.25
Anaconda watermark install  (0) 2019.06.11
Comments