SysUtils.TFilenameCaseMatch
From RAD Studio VCL Reference
Delphi Information
From SysUtils.pas
TFilenameCaseMatch = { mkNone, mkExactMatch, mkSingleMatch, mkAmbiguous };
Unit: SysUtils
Type: enum
C++ Information
From SysUtils.hpp
enum TFilenameCaseMatch{ mkNone, mkExactMatch, mkSingleMatch, mkAmbiguous };
Unit: SysUtils
Type: enum
Description
TFilenameCaseMatch indicates how close a match was found to a specified file name.
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. |