| Home | All functions | Categories |
vuExtractFileName(*CSTRING), CSTRING
Returns the file name portion of a fully qualified path and filename.
| Parameter | Data Type | Description |
|---|---|---|
| FileSpec | CSTRING(256) | Fully qualified path and filename to extract from |
A null-terminated CSTRING containing the file name. Can be assigned to any Clarion string variable.
FileSpec = 'C:\Temp\Valutilities.bak'
MESSAGE('The file name is ' & vuExtractFileName(FileSpec))
LOC:FileName = vuExtractFileName(FileSpec)
| Home | All functions | Categories |