recipe-organize-drive-folder

recipe-organize-drive-folder

熱門

建立 Google 雲端硬碟資料夾結構,並將檔案移至正確位置。

2.7萬星標
1669分支
更新於 2026/3/31
SKILL.md
readonlyread-only
name
recipe-organize-drive-folder
description

建立 Google 雲端硬碟資料夾結構,並將檔案移至正確位置。

將檔案整理到 Google 雲端硬碟資料夾

先決條件: 載入以下技能以執行此食譜:gws-drive

建立 Google 雲端硬碟資料夾結構,並將檔案移至正確位置。

步驟

  1. 建立專案資料夾:gws drive files create --json '{"name": "Q2 Project", "mimeType": "application/vnd.google-apps.folder"}'
  2. 建立子資料夾:gws drive files create --json '{"name": "Documents", "mimeType": "application/vnd.google-apps.folder", "parents": ["PARENT_FOLDER_ID"]}'
  3. 將現有檔案移至資料夾:gws drive files update --params '{"fileId": "FILE_ID", "addParents": "FOLDER_ID", "removeParents": "OLD_PARENT_ID"}'
  4. 驗證結構:gws drive files list --params '{"q": "FOLDER_ID in parents"}' --format table