반응형
문제 상황
파이썬을 통해 만든 파일을 다운받으려면 하나하나 우클릭> 다운로드 눌러야 함
해결 방법
구글드라이브에 들어가 파일을 내려받을 폴더를 새로 만든다.
이후 구글드라이브를 마운트시켜야 한다.
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)
반응형
'🖥️ IT, 컴퓨터 > 🐍 Python' 카테고리의 다른 글
[Python] 주피터 노트북 실행 안 되는 오류 :: pyzmq (0) | 2024.01.16 |
---|---|
[Python] Folium 라이브러리의 tiles 종류 (0) | 2024.01.09 |
[Google Colab] 구글 코랩 구글드라이브 연결 (0) | 2023.12.21 |
[Python] 에러 해결 :: No module named 'webdriver_manager' (0) | 2023.12.21 |
[VScode] 커널 선택 시 원하는 커널이 안 보이는 경우 (0) | 2023.12.21 |
댓글