SKILL.md
readonlyread-only
name
recipe-bulk-download-folder
description
列出並下載 Google Drive 資料夾中的所有檔案。
大量下載 Drive 資料夾
先決條件: 載入以下技能以執行此食譜:
gws-drive
列出並下載 Google Drive 資料夾中的所有檔案。
步驟
- 列出資料夾中的檔案:
gws drive files list --params '{"q": "'\''FOLDER_ID'\'' in parents"}' --format json - 下載每個檔案:
gws drive files get --params '{"fileId": "FILE_ID", "alt": "media"}' -o filename.ext - 將 Google 文件匯出為 PDF:
gws drive files export --params '{"fileId": "FILE_ID", "mimeType": "application/pdf"}' -o document.pdf






