[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Extract the path from a filename.
Source position: finah.inc line 23
function ExtractFilePath( |
const FileName: UnicodeString |
):UnicodeString; |
const FileName: RawByteString |
ExtractFilePath returns the path part (including driveletter) from FileName. The path consists of all characters before the last directory separator character ('/' or '\'), including the directory separator itself. In case there is only a drive letter, that will be returned.
The full filename can always be reconstucted by concatenating the result of ExtractFilePath and ExtractFileName.
For an example, see ExtractFileDir.
None.
|
Extract the filename part from a full path filename. |
|
|
Extract the path from a filename. |
|
|
Extract the drive and directory part of a filename. |
|
|
Extract the drive part from a filename. |
|
|
Return the extension from a filename. |
|
|
Extract a relative path from a filename, given a base directory. |