仓库原始内容
按源仓库内容呈现,保留标题、案例、代码、表格、链接以及原文引用的演示图片。
Find Largest Files in Drive
PREREQUISITE: Load the following skills to execute this recipe: gws-driveIdentify large Google Drive files consuming storage quota.
Steps
- List files sorted by size:
gws drive files list --params '{"orderBy": "quotaBytesUsed desc", "pageSize": 20, "fields": "files(id,name,size,mimeType,owners)"}' --format table - Review the output and identify files to archive or move

