GlobPattern

from panda3d.core import GlobPattern
class GlobPattern

Bases:

This class can be used to test for string matches against standard Unix- shell filename globbing conventions. It serves as a portable standin for the Posix fnmatch() call.

A GlobPattern is given a pattern string, which can contain operators like *, ?, and []. Then it can be tested against any number of candidate strings; for each candidate, it will indicate whether the string matches the pattern or not. It can be used, for example, to scan a directory for all files matching a particular pattern.

Inheritance diagram

Inheritance diagram of GlobPattern

__eq__(other: GlobPattern) bool
__init__(copy: GlobPattern)
__init__(pattern: str)
__lt__(other: GlobPattern) bool
__ne__(other: GlobPattern) bool
assign(copy: GlobPattern) GlobPattern
property case_sensitive bool

Returns/Sets whether the match is case sensitive (true) or case insensitive (false). The default is case sensitive.

getCaseSensitive() bool

Returns whether the match is case sensitive (true) or case insensitive (false). The default is case sensitive.

getConstPrefix() str

Returns the initial part of the pattern before the first glob character. Since many glob patterns begin with a sequence of static characters and end with one or more glob characters, this can be used to optimized searches through sorted indices.

getNomatchChars() str

Returns the set of characters that are not matched by * or ?.

getPattern() str

Returns the pattern string that the GlobPattern object matches.

hasGlobCharacters() bool

Returns true if the pattern includes any special globbing characters, or false if it is just a literal string.

matchFiles(cwd: Filename) object
matchFiles(results: vector_string, cwd: Filename) int

Treats the GlobPattern as a filename pattern, and returns a list of any actual files that match the pattern. This is the behavior of the standard Posix glob() function. Any part of the filename may contain glob characters, including intermediate directory names.

If cwd is specified, it is the directory that relative filenames are taken to be relative to; otherwise, the actual current working directory is assumed.

The return value is the number of files matched, which are added to the results vector.

matches(candidate: str) bool

Returns true if the candidate string matches the pattern, false otherwise.

matchesFile(candidate: Filename) bool

Treats the GlobPattern as a filename pattern, and returns true if the given filename matches the pattern. Unlike matches(), this will not match slash characters for single asterisk characters, and it will ignore path components that only contain a dot.

property nomatch_chars string

Returns/Specifies the/a set of characters that are not matched by * or ?.

output(out: ostream)
property pattern string

Returns/Changes the pattern string that the GlobPattern object matches.

setCaseSensitive(case_sensitive: bool)

Sets whether the match is case sensitive (true) or case insensitive (false). The default is case sensitive.

setNomatchChars(nomatch_chars: str)

Specifies a set of characters that are not matched by * or ?.

setPattern(pattern: str)

Changes the pattern string that the GlobPattern object matches.