delete_file
Remove files permanently from your computer's file system. This action immediately deletes specified files and cannot be undone.
Instructions
Permanently delete a file from the file system. This operation cannot be undone. The file is immediately removed from the storage device.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The path to the file to delete |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path to the file to delete",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}