| [Overview][Constants][Types][Procedures and functions][Variables][Index] |
Performs a sort order comparision for the specified file name and extension
Source position: lazfileutils.pas line 31
function CompareFileExt( |
const Filename: string; |
const Ext: string; |
CaseSensitive: Boolean = False |
):Integer; |
Filename |
|
File name for the comparision |
Ext |
|
File extension for the comparison |
CaseSensitive |
|
True if case sensitive comparison is needed |
Relative sort order for the compared values
CompareFileExt is an Integer function used to compare the file extension in FIlename to the value in Ext. Ext may contain the '.' character, but it is not required and will be removed for the comparison. CaseSensitive indicates whether case is ignored in the comparision. When CaseSensitive contains True, CompareStr is called to perform the comparison. Otherwise, UTF8CompareText is called to compare the values. The return value will contain one of the following:
The return is 1 if Filename does not contain a file extension.
| lazarus-ccr.sourceforge.net |