```sh
var = is_path_exists path
```
This command will return true/false based if the provided path points to an existing file system entry.
The path to check.
True if the path points to an existing file system entry.
```sh
existing = is_path_exists ./dir
existing = is_path_exists ./dir/somefile.txt
```