Class BaseFinder
A base file finder to be used for custom staticfiles finder classes.
Declaration
class BaseFinder
source linkDocumentation
Methods
▶ def check(self, **kwargs) Overrides
This method is overriden in:
▶ def find(self, path, all=False) Given a relative file path, find an absolute file path.
If the ``all`` parameter is False (default) return only the first found
file path; if True, return a list of all found files paths.
Overrides
This method is overriden in:
▶ def list(self, ignore_patterns) Given an optional list of paths to ignore, return a two item iterable consisting of the relative path and storage instance.
Overrides
This method is overriden in:
Subclasses