class documentation

class BaseStorageFinder(BaseFinder):

Known subclasses: django.contrib.staticfiles.finders.DefaultStorageFinder

View In Hierarchy

A base static files finder to be used to extended with an own storage class.
Method __init__ Undocumented
Method find Look for files in the default file storage, if it's local.
Method list List all files of the storage.
Instance Variable storage Undocumented

Inherited from BaseFinder:

Method check Undocumented
def __init__(self, storage=None, *args, **kwargs):
def find(self, path, all=False):
Look for files in the default file storage, if it's local.
def list(self, ignore_patterns):
List all files of the storage.
storage =

Undocumented