### checkoutPathMap.config Overview
The `checkoutPathMap.config` file is utilized by CAM to determine document checkout locations during remote check-ins. By default, this configuration file does not exist and must be manually created in the directory `C:\Program Files\Prosperoware.CAM\data`. The match patterns within this file can include multiple criteria, such as:
- User name, PC name, and drive
- User name and drive
- PC name and drive
- Drive
#### Attributes Description
| Attribute | Description |
|---------------------|---------------------------------------------|
| `match-user-name` | The name of a WorkSite user. |
| `match-machine-name`| The name of a user's computer. |
| `match-drive-name` | |
| `replace-pattern` | |
| `replace-start-with` | |
#### Variables Description
| Variable | Description |
|-------------------------|----------------------------|
| `@user@` | |
| `@machine@` | Citrix session |
| `@checkoutdrive@` | |
| `@userhomedirectory@` | |
| `@userhomedrive@` | |
#### Configuration Example
```xml
<configuration>
<path match-drive-name="c:" replace-pattern="\\@machine@\@checkoutdrive@$\vvvvv" replace-start-with="@checkoutdrive@" />
</configuration> |