wkentaro / gdown

Google Drive Public File Downloader when Curl/Wget Fails
MIT License
4.11k stars 343 forks source link

--remaining-ok flag #174

Closed Jeiyoon closed 2 years ago

Jeiyoon commented 2 years ago

Hi 😊

I've encountered a issue when i use gdown:

 gdown GDRIVE_FOLDER_URL -O /tmp/folder --folder

and then i got

The gdrive folder with url: GDRIVE_FOLDER_URL has at least 50 files, gdrive can't download more than this limit, if you are ok with this, please run again with --remaining-ok flag.

It worked when i use it about one month ago

even I add --remaining-ok in my terminal, or using python thing

import gdown

gdown.download(GDRIVE_FOLDER_URL, remaining_ok = True)
vict0rsch commented 2 years ago

Same, running

$ gdown https://drive.google.com/drive/folders/${id} -O ./data --folder --remaining-ok

Systematically tries to download the same contents then outputs:

The gdrive folder with url:
    https://drive.google.com/drive/folders/${id} has at least 50 files, gdrive can't download
    more than this limit, if you are ok with this, please run again with
    --remaining-ok flag.

Same for

gdown.download_folder(id=gdown_id, remaining_ok=True, output="./data")
yasinyazici commented 2 years ago

I'm having the same error. '--remaining-ok' flag does not change the outcome!