| [Overview][Constants][Types][Procedures and functions][Variables][Index] |
Determines if the specified value is an absolute file path (not a relative one)
Source position: lazfileutils.pas line 46
function FilenameIsUnixAbsolute( |
const TheFilename: string |
):Boolean; |
TheFilename |
|
Path and file name to use in the function |
True when the file name is not a relative path
FilenameIsUnixAbsolute is a Boolean function used to determine if the value in TheFilename contains an absolute file path (and not a relative one).
In UNIX-like environments, the FilenameIsUnixAbsolute function is used in the implementation of FilenameIsAbsolute. The return value is False if TheFilename is an empty string (''), or does not start with the directory separator for the environment.
| lazarus-ccr.sourceforge.net |