fs_delete_file
Remove files from your development environment using this filesystem deletion tool. Specify the file path to permanently delete files from your system.
Instructions
Delete a file from the filesystem. This operation is irreversible.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Absolute or relative path to the file to delete |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Absolute or relative path to the file to delete",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}