$npx -y skills add googleworkspace/cli --skill recipe-find-large-filesIdentify large Google Drive files consuming storage quota.
| 1 | # Find Largest Files in Drive |
| 2 | |
| 3 | > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` |
| 4 | |
| 5 | Identify large Google Drive files consuming storage quota. |
| 6 | |
| 7 | ## Steps |
| 8 | |
| 9 | 1. List files sorted by size: `gws drive files list --params '{"orderBy": "quotaBytesUsed desc", "pageSize": 20, "fields": "files(id,name,size,mimeType,owners)"}' --format table` |
| 10 | 2. Review the output and identify files to archive or move |