BT.remove_path
BT.remove_path
Function
removes a path from the currently valid PATH.
Syntax
BT.remove_path(path)
Parameters
| Parameters | Type | Required | Default value | Description |
|---|---|---|---|---|
| path | String | Yes | None | The path to delete. |
Return Value
| Type | Description |
|---|---|
| Bool | Returns true if deleted successfully; returns false if not found. |
Examples
BT.add_path('@/bin') result = BT.remove_path('@/bin') // Output: true print result
Notes
- The path will be parsed according to BT path rules first.