SKILL.md
readonlyread-only
name
recipe-organize-drive-folder
description
建立 Google 雲端硬碟資料夾結構,並將檔案移至正確位置。
將檔案整理到 Google 雲端硬碟資料夾
先決條件: 載入以下技能以執行此食譜:
gws-drive
建立 Google 雲端硬碟資料夾結構,並將檔案移至正確位置。
步驟
- 建立專案資料夾:
gws drive files create --json '{"name": "Q2 Project", "mimeType": "application/vnd.google-apps.folder"}' - 建立子資料夾:
gws drive files create --json '{"name": "Documents", "mimeType": "application/vnd.google-apps.folder", "parents": ["PARENT_FOLDER_ID"]}' - 將現有檔案移至資料夾:
gws drive files update --params '{"fileId": "FILE_ID", "addParents": "FOLDER_ID", "removeParents": "OLD_PARENT_ID"}' - 驗證結構:
gws drive files list --params '{"q": "FOLDER_ID in parents"}' --format table






