---
title: "getFileTitle"
canonical: "https://help.vicon.com/space/Shogun17/13536351/getFileTitle"
format: markdown
---
# Description

Retrieves the title portion of a file path, excluding the extension

For example, for `"c:/temp/take25.c3d"`, "take25" will be returned.

## Functional area

System

# Command syntax

## Syntax

|  |
| --- |
| `getFileTitle "filePath"` |

### Arguments

| **Name** | **Type** | **Required** | **Comments** |
| --- | --- | --- | --- |
| `filePath` | string | yes | Full path to the file to get the title for. |

### Flags

None

## Return value

string

Returns the file title, which is the file name minus the extension.

## Examples

```plaintext
// Get the title of a file path. 
string $title;
string $path = "c:/temp/take25.c3d";
$title = `getFileTitle $path`;
print $title;
```

> Macro (scroll-pagebreak)

# Additional information

## Related commands

- [getFileExtension](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13536391)
- [getFileLocation](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13536403)
- [getFileName](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13536401)