Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
List and download all files from a Google Drive folder, with support for exporting Google Docs as PDF.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-bulk-download-folder3description: "List and download all files from a Google Drive folder."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-drive14---1516# Bulk Download Drive Folder1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`1920List and download all files from a Google Drive folder.2122## Steps23241. List files in folder: `gws drive files list --params '{"q": "'\''FOLDER_ID'\'' in parents"}' --format json`252. Download each file: `gws drive files get --params '{"fileId": "FILE_ID", "alt": "media"}' -o filename.ext`263. Export Google Docs as PDF: `gws drive files export --params '{"fileId": "FILE_ID", "mimeType": "application/pdf"}' -o document.pdf`2728