# tuist build xcode file list

Lists compiled files for a build.

## Arguments

### build-id

The ID of the build.

```bash
tuist build xcode file list [build-id]
```

### project `Optional`

The full handle of the project. Must be in the format of account-handle/project-handle.

```bash
tuist build xcode file list --project [project]
tuist build xcode file list -P [project]
```

### path `Optional`

The path to the directory or a subdirectory of the project.

```bash
tuist build xcode file list --path [path]
tuist build xcode file list -p [path]
```

### target `Optional`

Filter by target name.

```bash
tuist build xcode file list --target [target]
```

### file-type `Optional`

Filter by file type.

```bash
tuist build xcode file list --file-type [file-type]
```

### sort-by `Optional`

Sort by field (compilation_duration or path).

```bash
tuist build xcode file list --sort-by [sort-by]
```

### page `Optional`

The page number to fetch (1-indexed).

```bash
tuist build xcode file list --page [page]
```

### page-size `Optional`

The number of files per page. Defaults to 10.

```bash
tuist build xcode file list --page-size [page-size]
```

### json `Optional`

The output in JSON format.

```bash
tuist build xcode file list --json
```
