recipe-batch-rename-files
Original:🇺🇸 English
Translated
Rename multiple Google Drive files matching a pattern to follow a consistent naming convention.
461installs
Sourcegoogleworkspace/cli
Added on
NPX Install
npx skill4agent add googleworkspace/cli recipe-batch-rename-filesTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Batch Rename Google Drive Files
PREREQUISITE: Load the following skills to execute this recipe:gws-drive
Rename multiple Google Drive files matching a pattern to follow a consistent naming convention.
Steps
- Find files to rename:
gws drive files list --params '{"q": "name contains '\''Report'\''"}' --format table - Rename a file:
gws drive files update --params '{"fileId": "FILE_ID"}' --json '{"name": "2025-Q1 Report - Final"}' - Verify the rename:
gws drive files get --params '{"fileId": "FILE_ID", "fields": "name"}'