# FileMount

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

Filesystem mount entry.

```ds title="FileMount"
export struct FileMount {
    source: string;
    target: Path;
    fileSystem: string;
    hostFlags: uint64;
}
```

[language/library/src/fs/binding/mount.ds:7:16](https://github.com/destack-sh/destack/blob/main/language/library/src/fs/binding/mount.ds#L7-L16)

## Members

### `source: string`

Source device or backing object when the host exposes one.

### `target: Path`

Target mount path.

### `fileSystem: string`

Filesystem type name when the host exposes one.

### `hostFlags: uint64`

Host-defined mount flags bitmask when the host exposes one.
