CSV export creates a copy outside Google Sheets access controls
Source references: 2The workflow exports the specified file or directly reads `Sheet1` values as CSV. A CSV generally does not preserve Google Sheets sharing restrictions, protected ranges, or access auditing.
If the selected sheet contains personal, financial, or commercially sensitive information, the local CSV may be accessible to other local users, backup software, or subsequent processing tools.
The skill explicitly exports the sheet identified by `SHEET_ID` as CSV, or reads `Sheet1` and emits CSV, creating a separately stored and processable data copy. This occurs only when the user supplies a target sheet and the `gws` credentials can read it. It matches the stated local-backup purpose and is not hidden, but the resulting copy is no longer directly governed by the source sheet’s sharing settings. Users can ask where output is written, whether files are overwritten, and what local permissions apply, and restrict eligible sheets and destinations.
Export a Google Sheets spreadsheet as a CSV file for local backup or processing.Show 1 other places
1. Get spreadsheet details: `gws sheets spreadsheets get --params '{"spreadsheetId": "SHEET_ID"}'`2. Export as CSV: `gws drive files export --params '{"fileId": "SHEET_ID", "mimeType": "text/csv"}'`3. Or read values directly: `gws sheets +read --spreadsheet SHEET_ID --range 'Sheet1' --format csv`