Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Create a Google Drive folder hierarchy and move existing files into the correct locations.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-organize-drive-folder3description: "Create a Google Drive folder structure and move files into the right locations."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-drive14---1516# Organize Files into Google Drive Folders1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`1920Create a Google Drive folder structure and move files into the right locations.2122## Steps23241. Create a project folder: `gws drive files create --json '{"name": "Q2 Project", "mimeType": "application/vnd.google-apps.folder"}'`252. Create sub-folders: `gws drive files create --json '{"name": "Documents", "mimeType": "application/vnd.google-apps.folder", "parents": ["PARENT_FOLDER_ID"]}'`263. Move existing files into folder: `gws drive files update --params '{"fileId": "FILE_ID", "addParents": "FOLDER_ID", "removeParents": "OLD_PARENT_ID"}'`274. Verify structure: `gws drive files list --params '{"q": "FOLDER_ID in parents"}' --format table`2829