# FileTimes

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

Access and modification timestamps.

```ds title="FileTimes"
export struct FileTimes {
    access: FileTime;
    modification: FileTime;
}
```

[language/library/src/fs/binding/status.ds:65:70](https://github.com/destack-sh/destack/blob/main/language/library/src/fs/binding/status.ds#L65-L70)

## Members

### `access: FileTime`

Last access time.

### `modification: FileTime`

Last modification time.
