🖥️ IT, 컴퓨터/🐍 Python

[Google Colab] 구글코랩에서 생성된 파일 다운 한번에 받기

김 홍시 2023. 12. 25.
반응형

문제 상황

 

 

파이썬을 통해 만든 파일을 다운받으려면 하나하나 우클릭> 다운로드 눌러야 함 

 

해결 방법

 

구글드라이브에 들어가 파일을 내려받을 폴더를 새로 만든다.

 

이후 구글드라이브를 마운트시켜야 한다.

 

 

from google.colab import drive
drive.mount('/content/drive')

 

아래의 코드를 실행한다. 

이때 <당신의 경로>에 구글드라이브 폴더 명을 입력한다.

 

import os
import shutil
from google.colab import drive

# Google 드라이브 마운트
drive.mount('/content/drive')

# 원본 경로
source_path = '/content'

# 목적지 경로
destination_path = '/content/drive/MyDrive/<<<<<<<<당신의 경로>>>>>>'

# 목적지 경로가 없으면 생성
if not os.path.exists(destination_path):
    os.makedirs(destination_path)

# '/content' 경로에 있는 모든 파일과 폴더를 이동
for filename in os.listdir(source_path):
    file_path = os.path.join(source_path, filename)
    if os.path.isfile(file_path) or os.path.isdir(file_path):
        shutil.move(file_path, destination_path)

 

 

 

 

반응형

댓글