# BT.remove_path ## Function removes a path from the currently valid PATH. ## Syntax ```bt 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 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. - Delete results are written back to the BT runtime PATH overlay.