System.SysUtils.TFilenameCaseMatch

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFilenameCaseMatch = (mkNone, mkExactMatch, mkSingleMatch, mkAmbiguous);

C++

enum DECLSPEC_DENUM TFilenameCaseMatch : unsigned char { mkNone, mkExactMatch, mkSingleMatch, mkAmbiguous };

Properties

Type Visibility Source Unit Parent
enum public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

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.