class documentation

class FileSystemFinder(BaseFinder):

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):

Undocumented

def check(self, **kwargs):
def find(self, path, all=False):
Look for files in the extra locations as defined in STATICFILES_DIRS.
def find_location(self, root, path, prefix=None):
Find a requested static file in a location and return the found absolute path (or None if no match).
def list(self, ignore_patterns):
List all files in all locations.
locations: list =

Undocumented

storages: dict =

Undocumented