```sh
var = rmdir path
```
This command delete the requested empty directory and returns true if successful.<br>
If the path leads to a file or a directory which is not empty, this command will fail.
A single parameter holding the directory path.
**true** if the directory was deleted.
```sh
deleted = rmdir ./mydir
```