# Recipe Bulk Download Folder > List and download all files from a Google Drive folder. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-bulk-download-folder Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 14 tok installed, 204 tok once triggered, 204 tok with every bundled file Bundle: 1 file, 815 B Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-bulk-download-folder --agent claude-code ``` ## What it does - Lista todos los archivos dentro de una carpeta de Google Drive usando gws drive files list - Descarga cada archivo individual con gws drive files get - Exporta Google Docs a PDF con gws drive files export ## Use it when - Necesitas descargar en bloque todos los archivos de una carpeta de Google Drive ## What triggers it - "Descarga todos los archivos de esta carpeta de Drive" - "Necesito bajar todos los documentos de esta carpeta a PDF" ## Before you install - Requiere el binario gws y cargar la skill gws-drive. ## Files - SKILL.md — 815 B ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # Bulk Download Drive Folder > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` List and download all files from a Google Drive folder. ## Steps 1. List files in folder: `gws drive files list --params '{"q": "'\''FOLDER_ID'\'' in parents"}' --format json` 2. Download each file: `gws drive files get --params '{"fileId": "FILE_ID", "alt": "media"}' -o filename.ext` 3. Export Google Docs as PDF: `gws drive files export --params '{"fileId": "FILE_ID", "mimeType": "application/pdf"}' -o document.pdf` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-bulk-download-folder