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