# BytePath

`import { BytePath } from "destack:fs/binding";`

Byte-oriented host path.

```ds title="BytePath"
export struct BytePath {
    kind: "bytes";
    bytes: PathBytes;
}
```

[language/library/src/fs/binding/path.ds:14:19](https://github.com/destack-sh/destack/blob/main/language/library/src/fs/binding/path.ds#L14-L19)

## Members

### `kind: "bytes"`

Path representation tag.

### `bytes: PathBytes`

Raw path bytes.
