class documentation

class FileSystemFinder(BaseFinder): (source)

View In Hierarchy

A static files finder that uses the ``STATICFILES_DIRS`` setting to locate files.

Method __init__ Undocumented
Method check Undocumented
Method find Look for files in the extra locations as defined in STATICFILES_DIRS.
Method find_location Find a requested static file in a location and return the found absolute path (or ``None`` if no match).
Method list List all files in all locations.
Instance Variable locations Undocumented
Instance Variable storages Undocumented
def __init__(self, app_names=None, *args, **kwargs): (source)

Undocumented

def check(self, **kwargs): (source)
def find(self, path, all=False): (source)

Look for files in the extra locations as defined in STATICFILES_DIRS.

def find_location(self, root, path, prefix=None): (source)

Find a requested static file in a location and return the found absolute path (or ``None`` if no match).

def list(self, ignore_patterns): (source)

List all files in all locations.

locations: list = (source)

Undocumented

storages: dict = (source)

Undocumented