class documentation

A base file finder to be used for custom staticfiles finder classes.

Method check Undocumented
Method find Given a relative file path, find an absolute file path.
Method list Given an optional list of paths to ignore, return a two item iterable consisting of the relative path and storage instance.
def check(self, **kwargs): (source)
def find(self, path, all=False): (source)

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.

def list(self, ignore_patterns): (source)

Given an optional list of paths to ignore, return a two item iterable consisting of the relative path and storage instance.