Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 패치분할
- 알고리즘
- 컨테이너
- geopandas
- geojson
- GCN
- docker
- 귀여운고래
- Python
- 파이썬
- Set
- 그리드분할
- 3d
- 폴더조사
- 지하철역좌표
- 도커
- pyvista
- MESH
- 도커 레이어
- GNN
- 3d데이터
- GIS
- python최단거리
- osmnx
- 데이터입수
- 동명이인찾기
- 이미지빌드
- 좌표거리
- STL
- graph
Archives
- Today
- Total
이것저것 기록
[python] shutil 모듈로 파일 복사 및 이동하기 본문
shutil은 파일을 복사 및 이동할 때 유용한 모듈이다.
작업중이던 파일을 일단 복사해서 새 경로에 저장해서 원본을 유지하고 싶을 때 코드 중간에 파일 복사 및 이동을 삽입하게 된다. (개인적으론 그랬음)
코드는 다음과 같다.
shutil.copy(src, dst) & shutil.move(src, dst)
import os
import shutil
path = 'C:/Users/user/Desktop/folder/'
files = os.listdir(path)
new_path = 'C:/Users/user/Desktop/folder/images/'
if not os.path.exists(new_path):
os.mkdir(new_path)
# move
for file in files:
if 'jpg' in file:
shutil.move(path + file, new_path + file)
print('{} has been moved to new folder!'.format(file))
# copy
for file in files:
if 'pdf' in file:
shutil.copy(path + file, new_path + file)
print('{} has been copied in new folder!'.format(file))
src라는 이름의 파일을 dst로 복사 및 이동하게 된다.
만약 해당 코드를 실행할 때 현재 경로가 해당 파일이 있는 곳이 아니라면,
src에는 경로 + 파일명을 적어줘야한다. dst에도 마찬가지다.
콘솔 실행 결과
짠
'코린이 > 코딩 기초 & 알고리즘 공부' 카테고리의 다른 글
[python] 조건부 표현식, 리스트 표현식, 축약 (0) | 2020.10.26 |
---|---|
[python] 람다(lamda) 함수 (익명함수) (0) | 2020.10.19 |
[python] datetime 모듈로 시간 처리 및 계산하기 (0) | 2020.10.17 |
[python] 딕셔너리(dict) 기초 (0) | 2020.10.09 |
[python] print 문자열 formatting (0) | 2020.10.09 |
Comments