Copy Folder Google Drive to Google Drive

chmod777

Premium Member
Joined
October 27, 2025
Messages
124
Reaction score
1,024
Points
93
  • Thread Author
  • #1
This project helps you copy the entire contents of a folder on Google Drive to another folder on the same Google Drive or another Google Drive account.

Instructions for use

1. Requirements

Google Account.
Access to Google Drive API.
Google Colab (or IPython Notebook enabled environment).
2. Prepare

To run the source code, follow these steps:

1: Install Libraries: No need to install additional libraries beyond what is available in Google Colab.
2: Enter input information:

3. Run Source Code

Code:
destDriveLink = dest_text.value
sourceDriveLink = source_text.value
fromPage = int(from_page_text.value)
toPage = int(to_page_text.value)

downloader = DownloadFromDrive()
downloader._limit_size = float(max_download_size_text.value)
downloader.excluded_strings = [ext.strip() for ext in exclude_str_text.value.split(",") if ext.strip()]
downloader.copy_drive_to_drive(destDriveLink, sourceDriveLink, fromPage, toPage)
 

Similar threads

  • Tags
    cloud storage copy drive file management folder google google drive