class BaseFinder:
Known subclasses: django.contrib.staticfiles.finders.AppDirectoriesFinder
, django.contrib.staticfiles.finders.BaseStorageFinder
, django.contrib.staticfiles.finders.FileSystemFinder
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. |
django.contrib.staticfiles.finders.FileSystemFinder
Undocumented
django.contrib.staticfiles.finders.AppDirectoriesFinder
, django.contrib.staticfiles.finders.BaseStorageFinder
, django.contrib.staticfiles.finders.FileSystemFinder
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.
django.contrib.staticfiles.finders.AppDirectoriesFinder
, django.contrib.staticfiles.finders.BaseStorageFinder
, django.contrib.staticfiles.finders.FileSystemFinder