delete_csv
Remove CSV files from your filesystem while maintaining optional backup protection. This tool securely deletes specified CSV documents and provides confirmation of the deletion process.
Instructions
Delete a CSV file (with backup if enabled).
Args:
filename: Name of the CSV file to delete
Returns:
Dictionary with deletion results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}