RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
SysUtils.TFilenameCaseMatch Enumeration

TFilenameCaseMatch indicates how close a match was found to a specified file name.

Pascal
TFilenameCaseMatch = (
  mkNone,
  mkExactMatch,
  mkSingleMatch,
  mkAmbiguous
);
C++
enum TFilenameCaseMatch {
  mkNone,
  mkExactMatch,
  mkSingleMatch,
  mkAmbiguous
};

SysUtils

These are the possible values of the TFilenameCaseMatch type:

Value 
Meaning 
mkNone  
No actual file matches the file name.  
mkExactMatch  
A single file matches the file name.  
mkSingleMatch  
No file matches the file name, but a single match can be found by ignoring differences in case.  
mkAmbiguous  
No file matches the file name, but two or more matches can be found by ignoring differences in case.  

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!