enum Poco::Glob::Options
Overview
Flags that modify the matching behavior. More…
#include <Glob.h> enum Options { GLOB_DEFAULT = 0x00, GLOB_DOT_SPECIAL = 0x01, GLOB_FOLLOW_SYMLINKS = 0x02, GLOB_CASELESS = 0x04, GLOB_DIRS_ONLY = 0x80, };
Detailed Documentation
Flags that modify the matching behavior.
Enum Values
GLOB_DEFAULT
default behavior
GLOB_DOT_SPECIAL
‘*’ and ‘?’ do not match ‘.’ at beginning of subject
GLOB_FOLLOW_SYMLINKS
follow symbolic links
GLOB_CASELESS
ignore case when comparing characters
GLOB_DIRS_ONLY
only glob for directories (for internal use only)