Folder contents are copied to the local environment in bulk
Source references: 2The workflow enumerates the folder, downloads each file, and exports Google documents as PDFs. The supplied instructions show no pre-download filtering, per-file confirmation, or sensitivity check.
If the selected folder contains confidential, personal, or regulated material, additional copies will be created in the current environment and become subject to that environment’s access, backup, and retention policies.
This is the Skill’s stated behavior: it lists files in a selected folder, downloads each one, and exports Google Docs as PDFs. The cloud read permissions granted to it and the selected folder therefore determine what is copied locally. The shown steps contain no pre-download filtering or per-file confirmation. A user can ask the author to document recursion, handling of shared files, and the local destination, or restrict access to the minimum required folder.
1. List files in folder: `gws drive files list --params '{"q": "'\''FOLDER_ID'\'' in parents"}' --format json`2. Download each file: `gws drive files get --params '{"fileId": "FILE_ID", "alt": "media"}' -o filename.ext`3. Export Google Docs as PDF: `gws drive files export --params '{"fileId": "FILE_ID", "mimeType": "application/pdf"}' -o document.pdf`Show 1 other places
List and download all files from a Google Drive folder.